Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

146 lines
5.2 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Text.RegularExpressions
{
/// <summary>Returns the set of captured groups in a single match.</summary>
// 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)
{
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Text.RegularExpressions.GroupCollection" />.</summary>
/// <returns>A copy of the <see cref="T:System.Text.RegularExpressions.Match" /> object to synchronize.</returns>
// 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;
}
}
/// <summary>Gets a value that indicates whether access to the <see cref="T:System.Text.RegularExpressions.GroupCollection" /> is synchronized (thread-safe).</summary>
/// <returns>
/// <see langword="false" /> in all cases.</returns>
// 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);
}
}
/// <summary>Returns the number of groups in the collection.</summary>
/// <returns>The number of groups in the collection.</returns>
// 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;
}
}
/// <summary>Enables access to a member of the collection by integer index.</summary>
/// <param name="groupnum">The zero-based index of the collection member to be retrieved.</param>
/// <returns>The member of the collection specified by <paramref name="groupnum" />.</returns>
// 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;
}
/// <summary>Copies all the elements of the collection to the given array beginning at the given index.</summary>
/// <param name="array">The array the collection is to be copied into.</param>
/// <param name="arrayIndex">The position in the destination array where the copying is to begin.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.IndexOutOfRangeException">
/// <paramref name="arrayIndex" /> is outside the bounds of <paramref name="array" />.
/// -or-
/// <paramref name="arrayIndex" /> plus <see cref="P:System.Text.RegularExpressions.GroupCollection.Count" /> is outside the bounds of <paramref name="array" />.</exception>
// 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)
{
}
/// <summary>Provides an enumerator that iterates through the collection.</summary>
/// <returns>An enumerator that contains all <see cref="T:System.Text.RegularExpressions.Group" /> objects in the <see cref="T:System.Text.RegularExpressions.GroupCollection" />.</returns>
// 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;
}
}