This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,68 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security
{
/// <summary>The exception that is thrown when there is a syntax error in XML parsing. This class cannot be inherited.</summary>
// Token: 0x020003C9 RID: 969
[Token(Token = "0x20003C9")]
[ComVisible(true)]
[Serializable]
public sealed class XmlSyntaxException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with default properties.</summary>
// Token: 0x06002298 RID: 8856 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002298")]
[Address(RVA = "0x8A3370", Offset = "0x8A2370", VA = "0x1808A3370")]
public XmlSyntaxException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with the line number where the exception was detected.</summary>
/// <param name="lineNumber">The line number of the XML stream where the XML syntax error was detected.</param>
// Token: 0x06002299 RID: 8857 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002299")]
[Address(RVA = "0xD1FB40", Offset = "0xD1EB40", VA = "0x180D1FB40")]
public XmlSyntaxException(int lineNumber)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with a specified error message and the line number where the exception was detected.</summary>
/// <param name="lineNumber">The line number of the XML stream where the XML syntax error was detected.</param>
/// <param name="message">The error message that explains the reason for the exception.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x0600229B RID: 8859 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600229B")]
[Address(RVA = "0xD1FC10", Offset = "0xD1EC10", VA = "0x180D1FC10")]
public XmlSyntaxException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.XmlSyntaxException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// 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)
{
}
}
}