using System; using System.Collections; using Cpp2IlInjected; namespace System.Text.RegularExpressions { /// Returns the set of captured groups in a single match. // Token: 0x020000AA RID: 170 [Token(Token = "0x20000AA")] [Serializable] public class GroupCollection : ICollection, IEnumerable { // Token: 0x06000385 RID: 901 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000385")] [Address(RVA = "0x417DD0", Offset = "0x416DD0", VA = "0x180417DD0")] internal GroupCollection(Match match, Hashtable caps) { } /// Gets an object that can be used to synchronize access to the . /// A copy of the object to synchronize. // Token: 0x17000089 RID: 137 // (get) Token: 0x06000386 RID: 902 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000089")] public object SyncRoot { [Token(Token = "0x6000386")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "6")] get { return null; } } /// Gets a value that indicates whether access to the is synchronized (thread-safe). /// /// in all cases. // Token: 0x1700008A RID: 138 // (get) Token: 0x06000387 RID: 903 RVA: 0x000036D8 File Offset: 0x000018D8 [Token(Token = "0x1700008A")] public bool IsSynchronized { [Token(Token = "0x6000387")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "7")] get { return default(bool); } } /// Returns the number of groups in the collection. /// The number of groups in the collection. // Token: 0x1700008B RID: 139 // (get) Token: 0x06000388 RID: 904 RVA: 0x000036F0 File Offset: 0x000018F0 [Token(Token = "0x1700008B")] public int Count { [Token(Token = "0x6000388")] [Address(RVA = "0xC74E10", Offset = "0xC73E10", VA = "0x180C74E10", Slot = "5")] get { return 0; } } /// Enables access to a member of the collection by integer index. /// The zero-based index of the collection member to be retrieved. /// The member of the collection specified by . // Token: 0x1700008C RID: 140 [Token(Token = "0x1700008C")] public Group this[int groupnum] { [Token(Token = "0x6000389")] [Address(RVA = "0xC74E40", Offset = "0xC73E40", VA = "0x180C74E40")] get { return null; } } // Token: 0x0600038A RID: 906 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600038A")] [Address(RVA = "0xC74CA0", Offset = "0xC73CA0", VA = "0x180C74CA0")] internal Group GetGroup(int groupnum) { return null; } // Token: 0x0600038B RID: 907 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600038B")] [Address(RVA = "0xC74900", Offset = "0xC73900", VA = "0x180C74900")] internal Group GetGroupImpl(int groupnum) { return null; } /// Copies all the elements of the collection to the given array beginning at the given index. /// The array the collection is to be copied into. /// The position in the destination array where the copying is to begin. /// /// is . /// /// is outside the bounds of . /// -or- /// plus is outside the bounds of . // Token: 0x0600038C RID: 908 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600038C")] [Address(RVA = "0xC747C0", Offset = "0xC737C0", VA = "0x180C747C0", Slot = "4")] public void CopyTo(Array array, int arrayIndex) { } /// Provides an enumerator that iterates through the collection. /// An enumerator that contains all objects in the . // Token: 0x0600038D RID: 909 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600038D")] [Address(RVA = "0xC748A0", Offset = "0xC738A0", VA = "0x180C748A0", Slot = "8")] public IEnumerator GetEnumerator() { return null; } // Token: 0x0600038E RID: 910 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600038E")] [Address(RVA = "0xC74DE0", Offset = "0xC73DE0", VA = "0x180C74DE0")] internal GroupCollection() { } // Token: 0x040002EC RID: 748 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40002EC")] internal Match _match; // Token: 0x040002ED RID: 749 [FieldOffset(Offset = "0x18")] [Token(Token = "0x40002ED")] internal Hashtable _captureMap; // Token: 0x040002EE RID: 750 [FieldOffset(Offset = "0x20")] [Token(Token = "0x40002EE")] internal Group[] _groups; } }