using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Xml.XPath { /// Provides the exception thrown when an error occurs while processing an XPath expression. // Token: 0x020000FF RID: 255 [Token(Token = "0x20000FF")] [Serializable] public class XPathException : SystemException { /// Uses the information in the and objects to initialize a new instance of the class. /// The object that contains all the properties of an . /// The object. // Token: 0x06000C34 RID: 3124 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C34")] [Address(RVA = "0x6794F0", Offset = "0x6784F0", VA = "0x1806794F0")] protected XPathException(SerializationInfo info, StreamingContext context) { } /// Streams all the properties into the class for the specified . /// The object. /// The object. // Token: 0x06000C35 RID: 3125 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C35")] [Address(RVA = "0x6791C0", Offset = "0x6781C0", VA = "0x1806791C0", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class. // Token: 0x06000C36 RID: 3126 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C36")] [Address(RVA = "0x6793E0", Offset = "0x6783E0", VA = "0x1806793E0")] public XPathException() { } /// Initializes a new instance of the class using the specified exception message and object. /// The description of the error condition. /// The that threw the , if any. This value can be . // Token: 0x06000C37 RID: 3127 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C37")] [Address(RVA = "0x6792F0", Offset = "0x6782F0", VA = "0x1806792F0")] public XPathException(string message, Exception innerException) { } // Token: 0x06000C38 RID: 3128 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C38")] [Address(RVA = "0x678FF0", Offset = "0x677FF0", VA = "0x180678FF0")] internal static XPathException Create(string res) { return null; } // Token: 0x06000C39 RID: 3129 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C39")] [Address(RVA = "0x678F00", Offset = "0x677F00", VA = "0x180678F00")] internal static XPathException Create(string res, string arg) { return null; } // Token: 0x06000C3A RID: 3130 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C3A")] [Address(RVA = "0x679070", Offset = "0x678070", VA = "0x180679070")] internal static XPathException Create(string res, string arg, string arg2) { return null; } // Token: 0x06000C3B RID: 3131 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C3B")] [Address(RVA = "0x6796F0", Offset = "0x6786F0", VA = "0x1806796F0")] private XPathException(string res, string[] args) { } // Token: 0x06000C3C RID: 3132 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C3C")] [Address(RVA = "0x679280", Offset = "0x678280", VA = "0x180679280")] private XPathException(string res, string[] args, Exception inner) { } // Token: 0x06000C3D RID: 3133 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C3D")] [Address(RVA = "0x678E50", Offset = "0x677E50", VA = "0x180678E50")] private static string CreateMessage(string res, string[] args) { return null; } /// Gets the description of the error condition for this exception. /// The description of the error condition for this exception. // Token: 0x1700032E RID: 814 // (get) Token: 0x06000C3E RID: 3134 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700032E")] public override string Message { [Token(Token = "0x6000C3E")] [Address(RVA = "0x679750", Offset = "0x678750", VA = "0x180679750", Slot = "5")] get { return null; } } // Token: 0x04000662 RID: 1634 [FieldOffset(Offset = "0x88")] [Token(Token = "0x4000662")] private string res; // Token: 0x04000663 RID: 1635 [FieldOffset(Offset = "0x90")] [Token(Token = "0x4000663")] private string[] args; // Token: 0x04000664 RID: 1636 [FieldOffset(Offset = "0x98")] [Token(Token = "0x4000664")] private string message; } }