using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when an invalid Uniform Resource Identifier (URI) is detected. // Token: 0x0200007F RID: 127 [Token(Token = "0x200007F")] [Serializable] public class UriFormatException : FormatException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000291 RID: 657 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000291")] [Address(RVA = "0x71DAA0", Offset = "0x71C8A0", VA = "0x18071DAA0")] public UriFormatException() { } /// Initializes a new instance of the class with the specified message. /// The error message string. // Token: 0x06000292 RID: 658 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000292")] [Address(RVA = "0x71DAB0", Offset = "0x71C8B0", VA = "0x18071DAB0")] public UriFormatException(string textString) { } /// Initializes a new instance of the class from the specified and instances. /// A that contains the information that is required to serialize the new . /// A that contains the source of the serialized stream that is associated with the new . // 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) { } /// Populates a instance with the data that is needed to serialize the . /// A that will hold the serialized data for the . /// A that contains the destination of the serialized stream that is associated with the new . // 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) { } } }