51 lines
3.0 KiB
C#
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 = "0xDCB7E0", Offset = "0xDCA7E0", VA = "0x180DCB7E0")]
|
|
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 = "0xDCB800", Offset = "0xDCA800", VA = "0x180DCB800")]
|
|
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 = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
|
|
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 = "0x7754D0", Offset = "0x7744D0", VA = "0x1807754D0", Slot = "4")]
|
|
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
{
|
|
}
|
|
}
|
|
}
|