Files
2026-04-10 22:50:51 +02:00

51 lines
3.0 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when an invalid Uniform Resource Identifier (URI) is detected.</summary>
// Token: 0x0200007F RID: 127
[Token(Token = "0x200007F")]
[Serializable]
public class UriFormatException : FormatException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.UriFormatException" /> class.</summary>
// Token: 0x06000291 RID: 657 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000291")]
[Address(RVA = "0x71DAA0", Offset = "0x71C8A0", VA = "0x18071DAA0")]
public UriFormatException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.UriFormatException" /> class with the specified message.</summary>
/// <param name="textString">The error message string.</param>
// Token: 0x06000292 RID: 658 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000292")]
[Address(RVA = "0x71DAB0", Offset = "0x71C8B0", VA = "0x18071DAB0")]
public UriFormatException(string textString)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.UriFormatException" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information that is required to serialize the new <see cref="T:System.UriFormatException" />.</param>
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.UriFormatException" />.</param>
// Token: 0x06000293 RID: 659 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000293")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected UriFormatException(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data that is needed to serialize the <see cref="T:System.UriFormatException" />.</summary>
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that will hold the serialized data for the <see cref="T:System.UriFormatException" />.</param>
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the destination of the serialized stream that is associated with the new <see cref="T:System.UriFormatException" />.</param>
// Token: 0x06000294 RID: 660 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000294")]
[Address(RVA = "0x403D80", Offset = "0x402B80", VA = "0x180403D80", Slot = "4")]
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
}
}