using System; using System.Collections; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Represents a collection of objects. This class cannot be inherited. // Token: 0x020001D0 RID: 464 [Token(Token = "0x20001D0")] public sealed class OidCollection : ICollection, IEnumerable { /// Initializes a new instance of the class. // Token: 0x06000C48 RID: 3144 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C48")] [Address(RVA = "0x5038B0", Offset = "0x5026B0", VA = "0x1805038B0")] public OidCollection() { } /// Adds an object to the object. /// The object to add to the collection. /// The index of the added object. // Token: 0x06000C49 RID: 3145 RVA: 0x00006918 File Offset: 0x00004B18 [Token(Token = "0x6000C49")] [Address(RVA = "0x4A7BD0", Offset = "0x4A69D0", VA = "0x1804A7BD0")] public int Add(Oid oid) { return 0; } /// Gets an object from the object. /// The location of the object in the collection. /// An object. // Token: 0x1700023A RID: 570 [Token(Token = "0x1700023A")] public Oid this[int index] { [Token(Token = "0x6000C4A")] [Address(RVA = "0x503910", Offset = "0x502710", VA = "0x180503910")] get { return null; } } /// Gets the number of objects in a collection. /// The number of objects in a collection. // Token: 0x1700023B RID: 571 // (get) Token: 0x06000C4B RID: 3147 RVA: 0x00006930 File Offset: 0x00004B30 [Token(Token = "0x1700023B")] public int Count { [Token(Token = "0x6000C4B")] [Address(RVA = "0x4A64A0", Offset = "0x4A52A0", VA = "0x1804A64A0", Slot = "5")] get { return 0; } } /// Returns an object that can be used to navigate the object. /// An object that can be used to navigate the collection. // Token: 0x06000C4C RID: 3148 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C4C")] [Address(RVA = "0x503850", Offset = "0x502650", VA = "0x180503850", Slot = "8")] IEnumerator IEnumerable.GetEnumerator() { return null; } /// Copies the object into an array. /// The array to copy the object to. /// The location where the copy operation starts. /// /// cannot be a multidimensional array. /// -or- /// The length of is an invalid offset length. /// /// is . /// The value of is out range. // Token: 0x06000C4D RID: 3149 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C4D")] [Address(RVA = "0x5035F0", Offset = "0x5023F0", VA = "0x1805035F0", Slot = "4")] void ICollection.CopyTo(Array array, int index) { } /// Gets a value that indicates whether access to the object is thread safe. /// /// in all cases. // Token: 0x1700023C RID: 572 // (get) Token: 0x06000C4E RID: 3150 RVA: 0x00006948 File Offset: 0x00004B48 [Token(Token = "0x1700023C")] public bool IsSynchronized { [Token(Token = "0x6000C4E")] [Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "7")] get { return default(bool); } } /// Gets an object that can be used to synchronize access to the object. /// An object that can be used to synchronize access to the object. // Token: 0x1700023D RID: 573 // (get) Token: 0x06000C4F RID: 3151 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700023D")] public object SyncRoot { [Token(Token = "0x6000C4F")] [Address(RVA = "0x434BD0", Offset = "0x4339D0", VA = "0x180434BD0", Slot = "6")] get { return null; } } // Token: 0x0400067A RID: 1658 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400067A")] private ArrayList m_list; } }