This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,132 @@
using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Text.RegularExpressions
{
/// <summary>Represents the set of captures made by a single capturing group.</summary>
// Token: 0x0200009F RID: 159
[Token(Token = "0x200009F")]
[Serializable]
public class CaptureCollection : ICollection, IEnumerable
{
/// <summary>Gets an object that can be used to synchronize access to the collection.</summary>
/// <returns>An object that can be used to synchronize access to the collection.</returns>
// Token: 0x1700007D RID: 125
// (get) Token: 0x0600032D RID: 813 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700007D")]
public object SyncRoot
{
[Token(Token = "0x600032D")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets a value that indicates whether access to the collection is synchronized (thread-safe).</summary>
/// <returns>
/// <see langword="false" /> in all cases.</returns>
// Token: 0x1700007E RID: 126
// (get) Token: 0x0600032E RID: 814 RVA: 0x00003408 File Offset: 0x00001608
[Token(Token = "0x1700007E")]
public bool IsSynchronized
{
[Token(Token = "0x600032E")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets the number of substrings captured by the group.</summary>
/// <returns>The number of items in the <see cref="T:System.Text.RegularExpressions.CaptureCollection" />.</returns>
// Token: 0x1700007F RID: 127
// (get) Token: 0x0600032F RID: 815 RVA: 0x00003420 File Offset: 0x00001620
[Token(Token = "0x1700007F")]
public int Count
{
[Token(Token = "0x600032F")]
[Address(RVA = "0x411540", Offset = "0x410540", VA = "0x180411540", Slot = "5")]
get
{
return 0;
}
}
/// <summary>Gets an individual member of the collection.</summary>
/// <param name="i">Index into the capture collection.</param>
/// <returns>The captured substring at position <paramref name="i" /> in the collection.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="i" /> is less than 0 or greater than <see cref="P:System.Text.RegularExpressions.CaptureCollection.Count" />.</exception>
// Token: 0x17000080 RID: 128
[Token(Token = "0x17000080")]
public Capture this[int i]
{
[Token(Token = "0x6000330")]
[Address(RVA = "0xC744B0", Offset = "0xC734B0", VA = "0x180C744B0")]
get
{
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 copying is to begin.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="arrayIndex" /> is outside the bounds of <paramref name="array" />.
/// -or-
/// <paramref name="arrayIndex" /> plus <see cref="P:System.Text.RegularExpressions.CaptureCollection.Count" /> is outside the bounds of <paramref name="array" />.</exception>
// Token: 0x06000331 RID: 817 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000331")]
[Address(RVA = "0xC74120", Offset = "0xC73120", VA = "0x180C74120", Slot = "4")]
public void CopyTo(Array array, int arrayIndex)
{
}
/// <summary>Provides an enumerator that iterates through the collection.</summary>
/// <returns>An object that contains all <see cref="T:System.Text.RegularExpressions.Capture" /> objects within the <see cref="T:System.Text.RegularExpressions.CaptureCollection" />.</returns>
// Token: 0x06000332 RID: 818 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000332")]
[Address(RVA = "0xC74420", Offset = "0xC73420", VA = "0x180C74420", Slot = "8")]
public IEnumerator GetEnumerator()
{
return null;
}
// Token: 0x06000333 RID: 819 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000333")]
[Address(RVA = "0xC741E0", Offset = "0xC731E0", VA = "0x180C741E0")]
internal Capture GetCapture(int i)
{
return null;
}
// Token: 0x06000334 RID: 820 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000334")]
[Address(RVA = "0xC74480", Offset = "0xC73480", VA = "0x180C74480")]
internal CaptureCollection()
{
}
// Token: 0x04000283 RID: 643
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000283")]
internal Group _group;
// Token: 0x04000284 RID: 644
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000284")]
internal int _capcount;
// Token: 0x04000285 RID: 645
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000285")]
internal Capture[] _captures;
}
}