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

64 lines
2.3 KiB
C#

using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents the type information for an authentication module. This class cannot be inherited.</summary>
// Token: 0x0200038C RID: 908
[Token(Token = "0x200038C")]
public sealed class AuthenticationModuleElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> class.</summary>
// Token: 0x060017EF RID: 6127 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017EF")]
[Address(RVA = "0x29D6AE0", Offset = "0x29D58E0", VA = "0x1829D6AE0")]
public AuthenticationModuleElement()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> class with the specified type information.</summary>
/// <param name="typeName">A string that identifies the type and the assembly that contains it.</param>
// Token: 0x060017F0 RID: 6128 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017F0")]
[Address(RVA = "0x29D6AB0", Offset = "0x29D58B0", VA = "0x1829D6AB0")]
public AuthenticationModuleElement(string typeName)
{
}
// Token: 0x1700051F RID: 1311
// (get) Token: 0x060017F1 RID: 6129 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700051F")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x60017F1")]
[Address(RVA = "0x29D6B10", Offset = "0x29D5910", VA = "0x1829D6B10", 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 an authentication module or <see langword="null" /> if no value has been specified.</returns>
// Token: 0x17000520 RID: 1312
// (get) Token: 0x060017F2 RID: 6130 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060017F3 RID: 6131 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000520")]
public string Type
{
[Token(Token = "0x60017F2")]
[Address(RVA = "0x29D6B40", Offset = "0x29D5940", VA = "0x1829D6B40")]
get
{
return null;
}
[Token(Token = "0x60017F3")]
[Address(RVA = "0x29D6B70", Offset = "0x29D5970", VA = "0x1829D6B70")]
set
{
}
}
}
}