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: 0x0200038D RID: 909 [Token(Token = "0x200038D")] [ConfigurationCollection(typeof(AuthenticationModuleElement))] public sealed class AuthenticationModuleElementCollection : ConfigurationElementCollection { /// Initializes a new instance of the class. // 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) { } /// 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: 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 { } } /// Adds an element to the collection. /// The to add to the collection. // Token: 0x060017F9 RID: 6137 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017F9")] [Address(RVA = "0x29D6840", Offset = "0x29D5640", VA = "0x1829D6840")] public void Add(AuthenticationModuleElement element) { } /// Removes all elements from the collection. // 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; } /// Returns the index of the specified configuration element. /// A . /// The zero-based index of . // 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; } /// Removes the specified configuration element from the collection. /// The to remove. // Token: 0x060017FE RID: 6142 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017FE")] [Address(RVA = "0x29D6990", Offset = "0x29D5790", VA = "0x1829D6990")] public void Remove(AuthenticationModuleElement element) { } /// Removes the element with the specified key. /// The key of the element to remove. // Token: 0x060017FF RID: 6143 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017FF")] [Address(RVA = "0x29D6960", Offset = "0x29D5760", VA = "0x1829D6960")] public void Remove(string name) { } /// Removes the element at the specified index. /// The zero-based index of the element to remove. // Token: 0x06001800 RID: 6144 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001800")] [Address(RVA = "0x29D6930", Offset = "0x29D5730", VA = "0x1829D6930")] public void RemoveAt(int index) { } } }