using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// Represents a container for authentication module configuration elements. This class cannot be inherited.
// Token: 0x02000389 RID: 905
[Token(Token = "0x2000389")]
[ConfigurationCollection(typeof(AuthenticationModuleElement))]
public sealed class AuthenticationModuleElementCollection : ConfigurationElementCollection
{
/// Initializes a new instance of the class.
// 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)
{
}
/// Gets or sets the element with the specified key.
/// The key for an element in the collection.
/// The with the specified key or if there is no element with the specified key.
// 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
{
}
}
/// Adds an element to the collection.
/// The to add to the collection.
// Token: 0x060017E2 RID: 6114 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E2")]
[Address(RVA = "0xDC3F50", Offset = "0xDC2F50", VA = "0x180DC3F50")]
public void Add(AuthenticationModuleElement element)
{
}
/// Removes all elements from the collection.
// 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;
}
/// Returns the index of the specified configuration element.
/// A .
/// The zero-based index of .
// 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;
}
/// Removes the specified configuration element from the collection.
/// The to remove.
// Token: 0x060017E7 RID: 6119 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E7")]
[Address(RVA = "0xDC40A0", Offset = "0xDC30A0", VA = "0x180DC40A0")]
public void Remove(AuthenticationModuleElement element)
{
}
/// Removes the element with the specified key.
/// The key of the element to remove.
// Token: 0x060017E8 RID: 6120 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E8")]
[Address(RVA = "0xDC4070", Offset = "0xDC3070", VA = "0x180DC4070")]
public void Remove(string name)
{
}
/// Removes the element at the specified index.
/// The zero-based index of the element to remove.
// Token: 0x060017E9 RID: 6121 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E9")]
[Address(RVA = "0xDC4040", Offset = "0xDC3040", VA = "0x180DC4040")]
public void RemoveAt(int index)
{
}
}
}