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

128 lines
5.0 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: 0x0200038D RID: 909
[Token(Token = "0x200038D")]
[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: 0x060017F4 RID: 6132 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017F4")]
[Address(RVA = "0x29D69C0", Offset = "0x29D57C0", VA = "0x1829D69C0")]
public AuthenticationModuleElementCollection()
{
}
// Token: 0x060017F5 RID: 6133 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017F5")]
[Address(RVA = "0x29D69F0", Offset = "0x29D57F0", VA = "0x1829D69F0")]
public AuthenticationModuleElement get_Item(int index)
{
return null;
}
// Token: 0x060017F6 RID: 6134 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017F6")]
[Address(RVA = "0x29D6A80", Offset = "0x29D5880", VA = "0x1829D6A80")]
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: 0x17000521 RID: 1313
[Token(Token = "0x17000521")]
public AuthenticationModuleElement this[string name]
{
[Token(Token = "0x60017F7")]
[Address(RVA = "0x29D6A20", Offset = "0x29D5820", VA = "0x1829D6A20")]
get
{
return null;
}
[Token(Token = "0x60017F8")]
[Address(RVA = "0x29D6A50", Offset = "0x29D5850", VA = "0x1829D6A50")]
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: 0x060017F9 RID: 6137 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017F9")]
[Address(RVA = "0x29D6840", Offset = "0x29D5640", VA = "0x1829D6840")]
public void Add(AuthenticationModuleElement element)
{
}
/// <summary>Removes all elements from the collection.</summary>
// Token: 0x060017FA RID: 6138 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017FA")]
[Address(RVA = "0x29D6870", Offset = "0x29D5670", VA = "0x1829D6870")]
public void Clear()
{
}
// Token: 0x060017FB RID: 6139 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017FB")]
[Address(RVA = "0x29D68A0", Offset = "0x29D56A0", VA = "0x1829D68A0", Slot = "16")]
protected override ConfigurationElement CreateNewElement()
{
return null;
}
// Token: 0x060017FC RID: 6140 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017FC")]
[Address(RVA = "0x29D68D0", Offset = "0x29D56D0", VA = "0x1829D68D0", 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: 0x060017FD RID: 6141 RVA: 0x0000A6F8 File Offset: 0x000088F8
[Token(Token = "0x60017FD")]
[Address(RVA = "0x29D6900", Offset = "0x29D5700", VA = "0x1829D6900")]
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: 0x060017FE RID: 6142 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017FE")]
[Address(RVA = "0x29D6990", Offset = "0x29D5790", VA = "0x1829D6990")]
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: 0x060017FF RID: 6143 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017FF")]
[Address(RVA = "0x29D6960", Offset = "0x29D5760", VA = "0x1829D6960")]
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: 0x06001800 RID: 6144 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001800")]
[Address(RVA = "0x29D6930", Offset = "0x29D5730", VA = "0x1829D6930")]
public void RemoveAt(int index)
{
}
}
}