Files
Aug2021-Cpp2IL-Dump/System/Net/Configuration/ModuleElement.cs
T
2026-04-10 22:50:51 +02:00

55 lines
1.8 KiB
C#

using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents the type information for a custom <see cref="T:System.Net.IWebProxy" /> module. This class cannot be inherited.</summary>
// Token: 0x02000395 RID: 917
[Token(Token = "0x2000395")]
public sealed class ModuleElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ModuleElement" /> class.</summary>
// Token: 0x0600183B RID: 6203 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600183B")]
[Address(RVA = "0x29E8C20", Offset = "0x29E7A20", VA = "0x1829E8C20")]
public ModuleElement()
{
}
// Token: 0x17000534 RID: 1332
// (get) Token: 0x0600183C RID: 6204 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000534")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x600183C")]
[Address(RVA = "0x29E8C50", Offset = "0x29E7A50", VA = "0x1829E8C50", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets or sets the type and assembly information for the current instance.</summary>
/// <returns>A string that identifies a type that implements the <see cref="T:System.Net.IWebProxy" /> interface or <see langword="null" /> if no value has been specified.</returns>
// Token: 0x17000535 RID: 1333
// (get) Token: 0x0600183D RID: 6205 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600183E RID: 6206 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000535")]
public string Type
{
[Token(Token = "0x600183D")]
[Address(RVA = "0x29E8C80", Offset = "0x29E7A80", VA = "0x1829E8C80")]
get
{
return null;
}
[Token(Token = "0x600183E")]
[Address(RVA = "0x29E8CB0", Offset = "0x29E7AB0", VA = "0x1829E8CB0")]
set
{
}
}
}
}