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

128 lines
4.9 KiB
C#

using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents a container for authentication module configuration elements. This class cannot be inherited.</summary>
// Token: 0x02000389 RID: 905
[Token(Token = "0x2000389")]
[ConfigurationCollection(typeof(AuthenticationModuleElement))]
public sealed class AuthenticationModuleElementCollection : ConfigurationElementCollection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModuleElementCollection" /> class.</summary>
// Token: 0x060017DD RID: 6109 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017DD")]
[Address(RVA = "0xDC40D0", Offset = "0xDC30D0", VA = "0x180DC40D0")]
public AuthenticationModuleElementCollection()
{
}
// Token: 0x060017DE RID: 6110 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017DE")]
[Address(RVA = "0xDC4100", Offset = "0xDC3100", VA = "0x180DC4100")]
public AuthenticationModuleElement get_Item(int index)
{
return null;
}
// Token: 0x060017DF RID: 6111 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017DF")]
[Address(RVA = "0xDC4190", Offset = "0xDC3190", VA = "0x180DC4190")]
public void set_Item(int index, AuthenticationModuleElement value)
{
}
/// <summary>Gets or sets the element with the specified key.</summary>
/// <param name="name">The key for an element in the collection.</param>
/// <returns>The <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> with the specified key or <see langword="null" /> if there is no element with the specified key.</returns>
// Token: 0x1700051D RID: 1309
[Token(Token = "0x1700051D")]
public AuthenticationModuleElement this[string name]
{
[Token(Token = "0x60017E0")]
[Address(RVA = "0xDC4130", Offset = "0xDC3130", VA = "0x180DC4130")]
get
{
return null;
}
[Token(Token = "0x60017E1")]
[Address(RVA = "0xDC4160", Offset = "0xDC3160", VA = "0x180DC4160")]
set
{
}
}
/// <summary>Adds an element to the collection.</summary>
/// <param name="element">The <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> to add to the collection.</param>
// Token: 0x060017E2 RID: 6114 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E2")]
[Address(RVA = "0xDC3F50", Offset = "0xDC2F50", VA = "0x180DC3F50")]
public void Add(AuthenticationModuleElement element)
{
}
/// <summary>Removes all elements from the collection.</summary>
// Token: 0x060017E3 RID: 6115 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E3")]
[Address(RVA = "0xDC3F80", Offset = "0xDC2F80", VA = "0x180DC3F80")]
public void Clear()
{
}
// Token: 0x060017E4 RID: 6116 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017E4")]
[Address(RVA = "0xDC3FB0", Offset = "0xDC2FB0", VA = "0x180DC3FB0", Slot = "16")]
protected override ConfigurationElement CreateNewElement()
{
return null;
}
// Token: 0x060017E5 RID: 6117 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017E5")]
[Address(RVA = "0xDC3FE0", Offset = "0xDC2FE0", VA = "0x180DC3FE0", Slot = "17")]
protected override object GetElementKey(ConfigurationElement element)
{
return null;
}
/// <summary>Returns the index of the specified configuration element.</summary>
/// <param name="element">A <see cref="T:System.Net.Configuration.AuthenticationModuleElement" />.</param>
/// <returns>The zero-based index of <paramref name="element" />.</returns>
// Token: 0x060017E6 RID: 6118 RVA: 0x0000A6E0 File Offset: 0x000088E0
[Token(Token = "0x60017E6")]
[Address(RVA = "0xDC4010", Offset = "0xDC3010", VA = "0x180DC4010")]
public int IndexOf(AuthenticationModuleElement element)
{
return 0;
}
/// <summary>Removes the specified configuration element from the collection.</summary>
/// <param name="element">The <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> to remove.</param>
// Token: 0x060017E7 RID: 6119 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E7")]
[Address(RVA = "0xDC40A0", Offset = "0xDC30A0", VA = "0x180DC40A0")]
public void Remove(AuthenticationModuleElement element)
{
}
/// <summary>Removes the element with the specified key.</summary>
/// <param name="name">The key of the element to remove.</param>
// Token: 0x060017E8 RID: 6120 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E8")]
[Address(RVA = "0xDC4070", Offset = "0xDC3070", VA = "0x180DC4070")]
public void Remove(string name)
{
}
/// <summary>Removes the element at the specified index.</summary>
/// <param name="index">The zero-based index of the element to remove.</param>
// Token: 0x060017E9 RID: 6121 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E9")]
[Address(RVA = "0xDC4040", Offset = "0xDC3040", VA = "0x180DC4040")]
public void RemoveAt(int index)
{
}
}
}