using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Security { /// The exception that is thrown when there is a syntax error in XML parsing. This class cannot be inherited. // Token: 0x020003C9 RID: 969 [Token(Token = "0x20003C9")] [ComVisible(true)] [Serializable] public sealed class XmlSyntaxException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x06002298 RID: 8856 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002298")] [Address(RVA = "0x8A3370", Offset = "0x8A2370", VA = "0x1808A3370")] public XmlSyntaxException() { } /// Initializes a new instance of the class with the line number where the exception was detected. /// The line number of the XML stream where the XML syntax error was detected. // Token: 0x06002299 RID: 8857 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002299")] [Address(RVA = "0xD1FB40", Offset = "0xD1EB40", VA = "0x180D1FB40")] public XmlSyntaxException(int lineNumber) { } /// Initializes a new instance of the class with a specified error message and the line number where the exception was detected. /// The line number of the XML stream where the XML syntax error was detected. /// The error message that explains the reason for the exception. // Token: 0x0600229A RID: 8858 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600229A")] [Address(RVA = "0xD1FA70", Offset = "0xD1EA70", VA = "0x180D1FA70")] public XmlSyntaxException(int lineNumber, string message) { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x0600229B RID: 8859 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600229B")] [Address(RVA = "0xD1FC10", Offset = "0xD1EC10", VA = "0x180D1FC10")] public XmlSyntaxException(string message) { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception. // Token: 0x0600229C RID: 8860 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600229C")] [Address(RVA = "0x767A00", Offset = "0x766A00", VA = "0x180767A00")] public XmlSyntaxException(string message, Exception inner) { } // Token: 0x0600229D RID: 8861 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600229D")] [Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")] internal XmlSyntaxException(SerializationInfo info, StreamingContext context) { } } }