a
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Text.RegularExpressions
|
||||
{
|
||||
/// <summary>The exception that is thrown when the execution time of a regular expression pattern-matching method exceeds its time-out interval.</summary>
|
||||
// Token: 0x020000B5 RID: 181
|
||||
[Token(Token = "0x20000B5")]
|
||||
[Serializable]
|
||||
public class RegexMatchTimeoutException : TimeoutException, ISerializable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with information about the regular expression pattern, the input text, and the time-out interval.</summary>
|
||||
/// <param name="regexInput">The input text processed by the regular expression engine when the time-out occurred.</param>
|
||||
/// <param name="regexPattern">The pattern used by the regular expression engine when the time-out occurred.</param>
|
||||
/// <param name="matchTimeout">The time-out interval.</param>
|
||||
// Token: 0x060003F3 RID: 1011 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60003F3")]
|
||||
[Address(RVA = "0x58DB30", Offset = "0x58C930", VA = "0x18058DB30")]
|
||||
public RegexMatchTimeoutException(string regexInput, string regexPattern, TimeSpan matchTimeout)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with a system-supplied message.</summary>
|
||||
// Token: 0x060003F4 RID: 1012 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60003F4")]
|
||||
[Address(RVA = "0x58D960", Offset = "0x58C760", VA = "0x18058D960")]
|
||||
public RegexMatchTimeoutException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with serialized data.</summary>
|
||||
/// <param name="info">The object that contains the serialized data.</param>
|
||||
/// <param name="context">The stream that contains the serialized data.</param>
|
||||
// Token: 0x060003F5 RID: 1013 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60003F5")]
|
||||
[Address(RVA = "0x58DA30", Offset = "0x58C830", VA = "0x18058DA30")]
|
||||
protected RegexMatchTimeoutException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize a <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> object.</summary>
|
||||
/// <param name="si">The object to populate with data.</param>
|
||||
/// <param name="context">The destination for this serialization.</param>
|
||||
// Token: 0x060003F6 RID: 1014 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60003F6")]
|
||||
[Address(RVA = "0x58D8A0", Offset = "0x58C6A0", VA = "0x18058D8A0", Slot = "4")]
|
||||
void ISerializable.GetObjectData(SerializationInfo si, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060003F7 RID: 1015 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60003F7")]
|
||||
[Address(RVA = "0x58D810", Offset = "0x58C610", VA = "0x18058D810")]
|
||||
private void Init()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060003F8 RID: 1016 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60003F8")]
|
||||
[Address(RVA = "0x58D880", Offset = "0x58C680", VA = "0x18058D880")]
|
||||
private void Init(string input, string pattern, TimeSpan timeout)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000321 RID: 801
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x4000321")]
|
||||
private string regexInput;
|
||||
|
||||
// Token: 0x04000322 RID: 802
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x4000322")]
|
||||
private string regexPattern;
|
||||
|
||||
// Token: 0x04000323 RID: 803
|
||||
[FieldOffset(Offset = "0x98")]
|
||||
[Token(Token = "0x4000323")]
|
||||
private TimeSpan matchTimeout;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user