using System; using System.Collections; using Cpp2IlInjected; namespace System.Configuration { /// Contains a collection of settings property values that map objects to objects. // Token: 0x02000386 RID: 902 [Token(Token = "0x2000386")] public class SettingsPropertyValueCollection : ICollection, IEnumerable, ICloneable { /// Initializes a new instance of the class. // Token: 0x060017CF RID: 6095 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017CF")] [Address(RVA = "0x28AC9B0", Offset = "0x28AB7B0", VA = "0x1828AC9B0")] public SettingsPropertyValueCollection() { } /// Gets a value that specifies the number of objects in the collection. /// The number of objects in the collection. // Token: 0x17000513 RID: 1299 // (get) Token: 0x060017D0 RID: 6096 RVA: 0x0000A680 File Offset: 0x00008880 [Token(Token = "0x17000513")] public int Count { [Token(Token = "0x60017D0")] [Address(RVA = "0x28AC9E0", Offset = "0x28AB7E0", VA = "0x1828AC9E0", Slot = "5")] get { return 0; } } /// Gets a value that indicates whether access to the collection is synchronized (thread safe). /// /// if access to the collection is synchronized; otherwise, . // Token: 0x17000514 RID: 1300 // (get) Token: 0x060017D1 RID: 6097 RVA: 0x0000A698 File Offset: 0x00008898 [Token(Token = "0x17000514")] public bool IsSynchronized { [Token(Token = "0x60017D1")] [Address(RVA = "0x28ACA10", Offset = "0x28AB810", VA = "0x1828ACA10", Slot = "7")] get { return default(bool); } } /// Gets an item from the collection. /// A object. /// The object with the specified . // Token: 0x17000515 RID: 1301 [Token(Token = "0x17000515")] public SettingsPropertyValue this[string name] { [Token(Token = "0x60017D2")] [Address(RVA = "0x28ACA40", Offset = "0x28AB840", VA = "0x1828ACA40")] get { return null; } } /// Gets the object to synchronize access to the collection. /// The object to synchronize access to the collection. // Token: 0x17000516 RID: 1302 // (get) Token: 0x060017D3 RID: 6099 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000516")] public object SyncRoot { [Token(Token = "0x60017D3")] [Address(RVA = "0x28ACA70", Offset = "0x28AB870", VA = "0x1828ACA70", Slot = "6")] get { return null; } } /// Adds a object to the collection. /// A object. /// An attempt was made to add an item to the collection, but the collection was marked as read-only. // Token: 0x060017D4 RID: 6100 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017D4")] [Address(RVA = "0x28AC860", Offset = "0x28AB660", VA = "0x1828AC860")] public void Add(SettingsPropertyValue property) { } /// Removes all objects from the collection. // Token: 0x060017D5 RID: 6101 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017D5")] [Address(RVA = "0x28AC890", Offset = "0x28AB690", VA = "0x1828AC890")] public void Clear() { } /// Creates a copy of the existing collection. /// A class. // Token: 0x060017D6 RID: 6102 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017D6")] [Address(RVA = "0x28AC8C0", Offset = "0x28AB6C0", VA = "0x1828AC8C0", Slot = "9")] public object Clone() { return null; } /// Copies this collection to an array. /// The array to copy the collection to. /// The index at which to begin copying. // Token: 0x060017D7 RID: 6103 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017D7")] [Address(RVA = "0x28AC8F0", Offset = "0x28AB6F0", VA = "0x1828AC8F0", Slot = "4")] public void CopyTo(Array array, int index) { } /// Gets the object as it applies to the collection. /// The object as it applies to the collection. // Token: 0x060017D8 RID: 6104 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017D8")] [Address(RVA = "0x28AC920", Offset = "0x28AB720", VA = "0x1828AC920", Slot = "8")] public IEnumerator GetEnumerator() { return null; } /// Removes a object from the collection. /// The name of the object. /// An attempt was made to remove an item from the collection, but the collection was marked as read-only. // Token: 0x060017D9 RID: 6105 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017D9")] [Address(RVA = "0x28AC950", Offset = "0x28AB750", VA = "0x1828AC950")] public void Remove(string name) { } /// Sets the collection to be read-only. // Token: 0x060017DA RID: 6106 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017DA")] [Address(RVA = "0x28AC980", Offset = "0x28AB780", VA = "0x1828AC980")] public void SetReadOnly() { } } }