using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Collections { /// Provides the base class for a strongly typed collection. // Token: 0x020005A8 RID: 1448 [Token(Token = "0x20005A8")] [ComVisible(true)] [Serializable] public abstract class CollectionBase : IList, ICollection, IEnumerable { /// Initializes a new instance of the class with the default initial capacity. // Token: 0x06002BC6 RID: 11206 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BC6")] [Address(RVA = "0x2532310", Offset = "0x2531110", VA = "0x182532310")] protected CollectionBase() { } /// Gets an containing the list of elements in the instance. /// An representing the instance itself. /// Retrieving the value of this property is an O(1) operation. // Token: 0x17000677 RID: 1655 // (get) Token: 0x06002BC7 RID: 11207 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000677")] protected ArrayList InnerList { [Token(Token = "0x6002BC7")] [Address(RVA = "0x25323E0", Offset = "0x25311E0", VA = "0x1825323E0")] get { return null; } } /// Gets an containing the list of elements in the instance. /// An representing the instance itself. // Token: 0x17000678 RID: 1656 // (get) Token: 0x06002BC8 RID: 11208 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000678")] protected IList List { [Token(Token = "0x6002BC8")] [Address(RVA = "0x434BD0", Offset = "0x4339D0", VA = "0x180434BD0")] get { return null; } } /// Gets the number of elements contained in the instance. This property cannot be overridden. /// The number of elements contained in the instance. /// Retrieving the value of this property is an O(1) operation. // Token: 0x17000679 RID: 1657 // (get) Token: 0x06002BC9 RID: 11209 RVA: 0x000171F0 File Offset: 0x000153F0 [Token(Token = "0x17000679")] public int Count { [Token(Token = "0x6002BC9")] [Address(RVA = "0x25323C0", Offset = "0x25311C0", VA = "0x1825323C0", Slot = "16")] get { return 0; } } /// Removes all objects from the instance. This method cannot be overridden. // Token: 0x06002BCA RID: 11210 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BCA")] [Address(RVA = "0x2531440", Offset = "0x2530240", VA = "0x182531440", Slot = "8")] public void Clear() { } /// Removes the element at the specified index of the instance. This method is not overridable. /// The zero-based index of the element to remove. /// /// is less than zero. /// -or- /// is equal to or greater than . // Token: 0x06002BCB RID: 11211 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BCB")] [Address(RVA = "0x25315C0", Offset = "0x25303C0", VA = "0x1825315C0", Slot = "14")] public void RemoveAt(int index) { } /// Gets a value indicating whether the is read-only. /// /// if the is read-only; otherwise, . The default is . // Token: 0x1700067A RID: 1658 // (get) Token: 0x06002BCC RID: 11212 RVA: 0x00017208 File Offset: 0x00015408 [Token(Token = "0x1700067A")] bool IList.IsReadOnly { [Token(Token = "0x6002BCC")] [Address(RVA = "0x2531FE0", Offset = "0x2530DE0", VA = "0x182531FE0", Slot = "9")] get { return default(bool); } } /// Gets a value indicating whether the has a fixed size. /// /// if the has a fixed size; otherwise, . The default is . // Token: 0x1700067B RID: 1659 // (get) Token: 0x06002BCD RID: 11213 RVA: 0x00017220 File Offset: 0x00015420 [Token(Token = "0x1700067B")] bool IList.IsFixedSize { [Token(Token = "0x6002BCD")] [Address(RVA = "0x2531F60", Offset = "0x2530D60", VA = "0x182531F60", Slot = "10")] get { return default(bool); } } /// Gets a value indicating whether access to the is synchronized (thread safe). /// /// if access to the is synchronized (thread safe); otherwise, . The default is . // Token: 0x1700067C RID: 1660 // (get) Token: 0x06002BCE RID: 11214 RVA: 0x00017238 File Offset: 0x00015438 [Token(Token = "0x1700067C")] bool ICollection.IsSynchronized { [Token(Token = "0x6002BCE")] [Address(RVA = "0x2531810", Offset = "0x2530610", VA = "0x182531810", Slot = "18")] get { return default(bool); } } /// Gets an object that can be used to synchronize access to the . /// An object that can be used to synchronize access to the . // Token: 0x1700067D RID: 1661 // (get) Token: 0x06002BCF RID: 11215 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x1700067D")] object ICollection.SyncRoot { [Token(Token = "0x6002BCF")] [Address(RVA = "0x2531890", Offset = "0x2530690", VA = "0x182531890", Slot = "17")] get { return null; } } /// Copies the entire to a compatible one-dimensional , starting at the specified index of the target array. /// The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. /// The zero-based index in at which copying begins. /// /// is . /// /// is less than zero. /// /// is multidimensional. /// -or- /// The number of elements in the source is greater than the available space from to the end of the destination . /// The type of the source cannot be cast automatically to the type of the destination . // Token: 0x06002BD0 RID: 11216 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BD0")] [Address(RVA = "0x2531770", Offset = "0x2530570", VA = "0x182531770", Slot = "15")] void ICollection.CopyTo(Array array, int index) { } /// Gets or sets the element at the specified index. /// The zero-based index of the element to get or set. /// The element at the specified index. /// /// is less than zero. /// -or- /// is equal to or greater than . // Token: 0x1700067E RID: 1662 [Token(Token = "0x1700067E")] object IList.this[int index] { [Token(Token = "0x6002BD1")] [Address(RVA = "0x2532060", Offset = "0x2530E60", VA = "0x182532060", Slot = "4")] get { return null; } [Token(Token = "0x6002BD2")] [Address(RVA = "0x2532130", Offset = "0x2530F30", VA = "0x182532130", Slot = "5")] set { } } /// Determines whether the contains a specific element. /// The to locate in the . /// /// if the contains the specified ; otherwise, . // Token: 0x06002BD3 RID: 11219 RVA: 0x00017250 File Offset: 0x00015450 [Token(Token = "0x6002BD3")] [Address(RVA = "0x2531AC0", Offset = "0x25308C0", VA = "0x182531AC0", Slot = "7")] bool IList.Contains(object value) { return default(bool); } /// Adds an object to the end of the . /// The to be added to the end of the . /// The index at which the has been added. /// The is read-only. /// -or- /// The has a fixed size. // Token: 0x06002BD4 RID: 11220 RVA: 0x00017268 File Offset: 0x00015468 [Token(Token = "0x6002BD4")] [Address(RVA = "0x2531910", Offset = "0x2530710", VA = "0x182531910", Slot = "6")] int IList.Add(object value) { return 0; } /// Removes the first occurrence of a specific object from the . /// The to remove from the . /// The parameter was not found in the object. /// The is read-only. /// -or- /// The has a fixed size. // Token: 0x06002BD5 RID: 11221 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BD5")] [Address(RVA = "0x2531D60", Offset = "0x2530B60", VA = "0x182531D60", Slot = "13")] void IList.Remove(object value) { } /// Searches for the specified and returns the zero-based index of the first occurrence within the entire . /// The to locate in the . /// The zero-based index of the first occurrence of within the entire , if found; otherwise, -1. // Token: 0x06002BD6 RID: 11222 RVA: 0x00017280 File Offset: 0x00015480 [Token(Token = "0x6002BD6")] [Address(RVA = "0x2531B50", Offset = "0x2530950", VA = "0x182531B50", Slot = "11")] int IList.IndexOf(object value) { return 0; } /// Inserts an element into the at the specified index. /// The zero-based index at which should be inserted. /// The to insert. /// /// is less than zero. /// -or- /// is greater than . /// The is read-only. /// -or- /// The has a fixed size. // Token: 0x06002BD7 RID: 11223 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BD7")] [Address(RVA = "0x2531BE0", Offset = "0x25309E0", VA = "0x182531BE0", Slot = "12")] void IList.Insert(int index, object value) { } /// Returns an enumerator that iterates through the instance. /// An for the instance. // Token: 0x06002BD8 RID: 11224 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6002BD8")] [Address(RVA = "0x25314E0", Offset = "0x25302E0", VA = "0x1825314E0", Slot = "19")] public IEnumerator GetEnumerator() { return null; } /// Performs additional custom processes before setting a value in the instance. /// The zero-based index at which can be found. /// The value to replace with . /// The new value of the element at . // Token: 0x06002BD9 RID: 11225 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BD9")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "20")] protected virtual void OnSet(int index, object oldValue, object newValue) { } /// Performs additional custom processes before inserting a new element into the instance. /// The zero-based index at which to insert . /// The new value of the element at . // Token: 0x06002BDA RID: 11226 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BDA")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "21")] protected virtual void OnInsert(int index, object value) { } /// Performs additional custom processes when clearing the contents of the instance. // Token: 0x06002BDB RID: 11227 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BDB")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "22")] protected virtual void OnClear() { } /// Performs additional custom processes when removing an element from the instance. /// The zero-based index at which can be found. /// The value of the element to remove from . // Token: 0x06002BDC RID: 11228 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BDC")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "23")] protected virtual void OnRemove(int index, object value) { } /// Performs additional custom processes when validating a value. /// The object to validate. /// /// is . // Token: 0x06002BDD RID: 11229 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BDD")] [Address(RVA = "0x2531560", Offset = "0x2530360", VA = "0x182531560", Slot = "24")] protected virtual void OnValidate(object value) { } /// Performs additional custom processes after setting a value in the instance. /// The zero-based index at which can be found. /// The value to replace with . /// The new value of the element at . // Token: 0x06002BDE RID: 11230 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BDE")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "25")] protected virtual void OnSetComplete(int index, object oldValue, object newValue) { } /// Performs additional custom processes after inserting a new element into the instance. /// The zero-based index at which to insert . /// The new value of the element at . // Token: 0x06002BDF RID: 11231 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BDF")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "26")] protected virtual void OnInsertComplete(int index, object value) { } /// Performs additional custom processes after clearing the contents of the instance. // Token: 0x06002BE0 RID: 11232 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BE0")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "27")] protected virtual void OnClearComplete() { } /// Performs additional custom processes after removing an element from the instance. /// The zero-based index at which can be found. /// The value of the element to remove from . // Token: 0x06002BE1 RID: 11233 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BE1")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "28")] protected virtual void OnRemoveComplete(int index, object value) { } // Token: 0x04001976 RID: 6518 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x4001976")] private ArrayList list; } }