Files
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x0200038E RID: 910
[Token(Token = "0x200038E")]
public sealed class AuthenticationModulesSection : ConfigurationSection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModulesSection" /> class.</summary>
// Token: 0x06001801 RID: 6145 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001801")]
[Address(RVA = "0x29D6C00", Offset = "0x29D5A00", VA = "0x1829D6C00")]
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: 0x17000522 RID: 1314
// (get) Token: 0x06001802 RID: 6146 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000522")]
public AuthenticationModuleElementCollection AuthenticationModules
{
[Token(Token = "0x6001802")]
[Address(RVA = "0x29D6C30", Offset = "0x29D5A30", VA = "0x1829D6C30")]
get
{
return null;
}
}
// Token: 0x17000523 RID: 1315
// (get) Token: 0x06001803 RID: 6147 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000523")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x6001803")]
[Address(RVA = "0x29D6C60", Offset = "0x29D5A60", VA = "0x1829D6C60", Slot = "4")]
get
{
return null;
}
}
// Token: 0x06001804 RID: 6148 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001804")]
[Address(RVA = "0x29D6BA0", Offset = "0x29D59A0", VA = "0x1829D6BA0", Slot = "6")]
protected override void InitializeDefault()
{
}
// Token: 0x06001805 RID: 6149 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001805")]
[Address(RVA = "0x29D6BD0", Offset = "0x29D59D0", VA = "0x1829D6BD0", Slot = "8")]
protected override void PostDeserialize()
{
}
}
}