using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// Returns detailed information about the schema exception.
// Token: 0x02000115 RID: 277
[Token(Token = "0x2000115")]
[Serializable]
public class XmlSchemaException : SystemException
{
/// Constructs a new object with the given and information that contains all the properties of the .
/// SerializationInfo.
/// StreamingContext.
// Token: 0x0600086B RID: 2155 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600086B")]
[Address(RVA = "0x5D07D0", Offset = "0x5CF5D0", VA = "0x1805D07D0")]
protected XmlSchemaException(SerializationInfo info, StreamingContext context)
{
}
/// Streams all the properties into the class for the given .
/// The .
/// The information.
// Token: 0x0600086C RID: 2156 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600086C")]
[Address(RVA = "0x5D0310", Offset = "0x5CF110", VA = "0x1805D0310", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// Initializes a new instance of the class.
// Token: 0x0600086D RID: 2157 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600086D")]
[Address(RVA = "0x5D0AE0", Offset = "0x5CF8E0", VA = "0x1805D0AE0")]
public XmlSchemaException()
{
}
/// Initializes a new instance of the class with the exception message specified.
/// A description of the error condition.
// Token: 0x0600086E RID: 2158 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600086E")]
[Address(RVA = "0x5D0520", Offset = "0x5CF320", VA = "0x1805D0520")]
public XmlSchemaException(string message)
{
}
/// Initializes a new instance of the class with the exception message and original object that caused this exception specified.
/// A description of the error condition.
/// The original T:System.Exception object that caused this exception.
// Token: 0x0600086F RID: 2159 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600086F")]
[Address(RVA = "0x5D07B0", Offset = "0x5CF5B0", VA = "0x1805D07B0")]
public XmlSchemaException(string message, Exception innerException)
{
}
/// Initializes a new instance of the class with the exception message specified, and the original object, line number, and line position of the XML that cause this exception specified.
/// A description of the error condition.
/// The original T:System.Exception object that caused this exception.
/// The line number of the XML that caused this exception.
/// The line position of the XML that caused this exception.
// Token: 0x06000870 RID: 2160 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000870")]
[Address(RVA = "0x5D0540", Offset = "0x5CF340", VA = "0x1805D0540")]
public XmlSchemaException(string message, Exception innerException, int lineNumber, int linePosition)
{
}
// Token: 0x06000871 RID: 2161 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000871")]
[Address(RVA = "0x5D0420", Offset = "0x5CF220", VA = "0x1805D0420")]
internal XmlSchemaException(string res, string arg)
{
}
// Token: 0x06000872 RID: 2162 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000872")]
[Address(RVA = "0x5D0680", Offset = "0x5CF480", VA = "0x1805D0680")]
internal XmlSchemaException(string res, string arg, string sourceUri, int lineNumber, int linePosition)
{
}
// Token: 0x06000873 RID: 2163 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000873")]
[Address(RVA = "0x5D0B10", Offset = "0x5CF910", VA = "0x1805D0B10")]
internal XmlSchemaException(string res, string[] args, Exception innerException, string sourceUri, int lineNumber, int linePosition, XmlSchemaObject source)
{
}
// Token: 0x06000874 RID: 2164 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000874")]
[Address(RVA = "0x5D0280", Offset = "0x5CF080", VA = "0x1805D0280")]
internal static string CreateMessage(string res, string[] args)
{
return null;
}
/// Gets the description of the error condition of this exception.
/// The description of the error condition of this exception.
// Token: 0x17000304 RID: 772
// (get) Token: 0x06000875 RID: 2165 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000304")]
public override string Message
{
[Token(Token = "0x6000875")]
[Address(RVA = "0x5D0BB0", Offset = "0x5CF9B0", VA = "0x1805D0BB0", Slot = "5")]
get
{
return null;
}
}
// Token: 0x04000427 RID: 1063
[FieldOffset(Offset = "0x88")]
[Token(Token = "0x4000427")]
private string res;
// Token: 0x04000428 RID: 1064
[FieldOffset(Offset = "0x90")]
[Token(Token = "0x4000428")]
private string[] args;
// Token: 0x04000429 RID: 1065
[FieldOffset(Offset = "0x98")]
[Token(Token = "0x4000429")]
private string sourceUri;
// Token: 0x0400042A RID: 1066
[FieldOffset(Offset = "0xA0")]
[Token(Token = "0x400042A")]
private int lineNumber;
// Token: 0x0400042B RID: 1067
[FieldOffset(Offset = "0xA4")]
[Token(Token = "0x400042B")]
private int linePosition;
// Token: 0x0400042C RID: 1068
[FieldOffset(Offset = "0xA8")]
[Token(Token = "0x400042C")]
[NonSerialized]
private XmlSchemaObject sourceSchemaObject;
// Token: 0x0400042D RID: 1069
[FieldOffset(Offset = "0xB0")]
[Token(Token = "0x400042D")]
private string message;
}
}