using System; using System.Collections; using Cpp2IlInjected; namespace System.Configuration { /// Contains a collection of settings property values that map objects to objects. // Token: 0x02000382 RID: 898 [Token(Token = "0x2000382")] public class SettingsPropertyValueCollection : ICollection, IEnumerable, ICloneable { /// Initializes a new instance of the class. // Token: 0x060017B8 RID: 6072 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017B8")] [Address(RVA = "0x2F47460", Offset = "0x2F46460", VA = "0x182F47460")] public SettingsPropertyValueCollection() { } /// Gets a value that specifies the number of objects in the collection. /// The number of objects in the collection. // Token: 0x1700050F RID: 1295 // (get) Token: 0x060017B9 RID: 6073 RVA: 0x0000A668 File Offset: 0x00008868 [Token(Token = "0x1700050F")] public int Count { [Token(Token = "0x60017B9")] [Address(RVA = "0x2F47490", Offset = "0x2F46490", VA = "0x182F47490", 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: 0x17000510 RID: 1296 // (get) Token: 0x060017BA RID: 6074 RVA: 0x0000A680 File Offset: 0x00008880 [Token(Token = "0x17000510")] public bool IsSynchronized { [Token(Token = "0x60017BA")] [Address(RVA = "0x2F474C0", Offset = "0x2F464C0", VA = "0x182F474C0", Slot = "7")] get { return default(bool); } } /// Gets an item from the collection. /// A object. /// The object with the specified . // Token: 0x17000511 RID: 1297 [Token(Token = "0x17000511")] public SettingsPropertyValue this[string name] { [Token(Token = "0x60017BB")] [Address(RVA = "0x2F474F0", Offset = "0x2F464F0", VA = "0x182F474F0")] get { return null; } } /// Gets the object to synchronize access to the collection. /// The object to synchronize access to the collection. // Token: 0x17000512 RID: 1298 // (get) Token: 0x060017BC RID: 6076 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000512")] public object SyncRoot { [Token(Token = "0x60017BC")] [Address(RVA = "0x2F47520", Offset = "0x2F46520", VA = "0x182F47520", 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: 0x060017BD RID: 6077 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017BD")] [Address(RVA = "0x2F47310", Offset = "0x2F46310", VA = "0x182F47310")] public void Add(SettingsPropertyValue property) { } /// Removes all objects from the collection. // Token: 0x060017BE RID: 6078 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017BE")] [Address(RVA = "0x2F47340", Offset = "0x2F46340", VA = "0x182F47340")] public void Clear() { } /// Creates a copy of the existing collection. /// A class. // Token: 0x060017BF RID: 6079 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017BF")] [Address(RVA = "0x2F47370", Offset = "0x2F46370", VA = "0x182F47370", 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: 0x060017C0 RID: 6080 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017C0")] [Address(RVA = "0x2F473A0", Offset = "0x2F463A0", VA = "0x182F473A0", 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: 0x060017C1 RID: 6081 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C1")] [Address(RVA = "0x2F473D0", Offset = "0x2F463D0", VA = "0x182F473D0", 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: 0x060017C2 RID: 6082 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017C2")] [Address(RVA = "0x2F47400", Offset = "0x2F46400", VA = "0x182F47400")] public void Remove(string name) { } /// Sets the collection to be read-only. // Token: 0x060017C3 RID: 6083 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60017C3")] [Address(RVA = "0x2F47430", Offset = "0x2F46430", VA = "0x182F47430")] public void SetReadOnly() { } } }