Files
27Aug2021-Cpp2IL-Dump/System/Net/Configuration/AuthenticationModulesSection.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

63 lines
2.1 KiB
C#

using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents the configuration section for authentication modules. This class cannot be inherited.</summary>
// Token: 0x0200038A RID: 906
[Token(Token = "0x200038A")]
public sealed class AuthenticationModulesSection : ConfigurationSection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModulesSection" /> class.</summary>
// Token: 0x060017EA RID: 6122 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017EA")]
[Address(RVA = "0xDC4310", Offset = "0xDC3310", VA = "0x180DC4310")]
public AuthenticationModulesSection()
{
}
/// <summary>Gets the collection of authentication modules in the section.</summary>
/// <returns>A <see cref="T:System.Net.Configuration.AuthenticationModuleElementCollection" /> that contains the registered authentication modules.</returns>
// Token: 0x1700051E RID: 1310
// (get) Token: 0x060017EB RID: 6123 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700051E")]
public AuthenticationModuleElementCollection AuthenticationModules
{
[Token(Token = "0x60017EB")]
[Address(RVA = "0xDC4340", Offset = "0xDC3340", VA = "0x180DC4340")]
get
{
return null;
}
}
// Token: 0x1700051F RID: 1311
// (get) Token: 0x060017EC RID: 6124 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700051F")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x60017EC")]
[Address(RVA = "0xDC4370", Offset = "0xDC3370", VA = "0x180DC4370", Slot = "4")]
get
{
return null;
}
}
// Token: 0x060017ED RID: 6125 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017ED")]
[Address(RVA = "0xDC42B0", Offset = "0xDC32B0", VA = "0x180DC42B0", Slot = "6")]
protected override void InitializeDefault()
{
}
// Token: 0x060017EE RID: 6126 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017EE")]
[Address(RVA = "0xDC42E0", Offset = "0xDC32E0", VA = "0x180DC42E0", Slot = "8")]
protected override void PostDeserialize()
{
}
}
}