146 lines
5.2 KiB
C#
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: 0x020000AE RID: 174
|
|
[Token(Token = "0x20000AE")]
|
|
[Serializable]
|
|
public class GroupCollection : ICollection, IEnumerable
|
|
{
|
|
// Token: 0x0600039B RID: 923 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600039B")]
|
|
[Address(RVA = "0x4089A0", Offset = "0x4077A0", VA = "0x1804089A0")]
|
|
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: 0x1700008D RID: 141
|
|
// (get) Token: 0x0600039C RID: 924 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700008D")]
|
|
public object SyncRoot
|
|
{
|
|
[Token(Token = "0x600039C")]
|
|
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", 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: 0x1700008E RID: 142
|
|
// (get) Token: 0x0600039D RID: 925 RVA: 0x000036F0 File Offset: 0x000018F0
|
|
[Token(Token = "0x1700008E")]
|
|
public bool IsSynchronized
|
|
{
|
|
[Token(Token = "0x600039D")]
|
|
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", 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: 0x1700008F RID: 143
|
|
// (get) Token: 0x0600039E RID: 926 RVA: 0x00003708 File Offset: 0x00001908
|
|
[Token(Token = "0x1700008F")]
|
|
public int Count
|
|
{
|
|
[Token(Token = "0x600039E")]
|
|
[Address(RVA = "0x501AC0", Offset = "0x5008C0", VA = "0x180501AC0", 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: 0x17000090 RID: 144
|
|
[Token(Token = "0x17000090")]
|
|
public Group this[int groupnum]
|
|
{
|
|
[Token(Token = "0x600039F")]
|
|
[Address(RVA = "0x501AF0", Offset = "0x5008F0", VA = "0x180501AF0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060003A0 RID: 928 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003A0")]
|
|
[Address(RVA = "0x501950", Offset = "0x500750", VA = "0x180501950")]
|
|
internal Group GetGroup(int groupnum)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060003A1 RID: 929 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003A1")]
|
|
[Address(RVA = "0x5015B0", Offset = "0x5003B0", VA = "0x1805015B0")]
|
|
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: 0x060003A2 RID: 930 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60003A2")]
|
|
[Address(RVA = "0x501470", Offset = "0x500270", VA = "0x180501470", 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: 0x060003A3 RID: 931 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003A3")]
|
|
[Address(RVA = "0x501550", Offset = "0x500350", VA = "0x180501550", Slot = "8")]
|
|
public IEnumerator GetEnumerator()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060003A4 RID: 932 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60003A4")]
|
|
[Address(RVA = "0x501A90", Offset = "0x500890", VA = "0x180501A90")]
|
|
internal GroupCollection()
|
|
{
|
|
}
|
|
|
|
// Token: 0x040002F9 RID: 761
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40002F9")]
|
|
internal Match _match;
|
|
|
|
// Token: 0x040002FA RID: 762
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x40002FA")]
|
|
internal Hashtable _captureMap;
|
|
|
|
// Token: 0x040002FB RID: 763
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x40002FB")]
|
|
internal Group[] _groups;
|
|
}
|
|
}
|