67 lines
3.3 KiB
C#
67 lines
3.3 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Represents the exception thrown when XML Schema Definition Language (XSD) schema validation errors and warnings are encountered in an XML document being validated. </summary>
|
|
// Token: 0x02000260 RID: 608
|
|
[Token(Token = "0x2000260")]
|
|
[Serializable]
|
|
public class XmlSchemaValidationException : XmlSchemaException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects specified.</summary>
|
|
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
|
|
// Token: 0x06001774 RID: 6004 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001774")]
|
|
[Address(RVA = "0x56DF60", Offset = "0x56CF60", VA = "0x18056DF60")]
|
|
protected XmlSchemaValidationException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Constructs a new <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> object with the given <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> information that contains all the properties of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" />.</summary>
|
|
/// <param name="info">
|
|
/// <see cref="T:System.Runtime.Serialization.SerializationInfo" />
|
|
/// </param>
|
|
/// <param name="context">
|
|
/// <see cref="T:System.Runtime.Serialization.StreamingContext" />
|
|
/// </param>
|
|
// Token: 0x06001775 RID: 6005 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001775")]
|
|
[Address(RVA = "0x56DF00", Offset = "0x56CF00", VA = "0x18056DF00", Slot = "10")]
|
|
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class.</summary>
|
|
// Token: 0x06001776 RID: 6006 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001776")]
|
|
[Address(RVA = "0x56DF80", Offset = "0x56CF80", VA = "0x18056DF80")]
|
|
public XmlSchemaValidationException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06001777 RID: 6007 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001777")]
|
|
[Address(RVA = "0x56DF90", Offset = "0x56CF90", VA = "0x18056DF90")]
|
|
internal XmlSchemaValidationException(string res, string arg, string sourceUri, int lineNumber, int linePosition)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06001778 RID: 6008 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001778")]
|
|
[Address(RVA = "0x56E090", Offset = "0x56D090", VA = "0x18056E090")]
|
|
internal XmlSchemaValidationException(string res, string[] args, string sourceUri, int lineNumber, int linePosition)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06001779 RID: 6009 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001779")]
|
|
[Address(RVA = "0x56DF20", Offset = "0x56CF20", VA = "0x18056DF20")]
|
|
internal XmlSchemaValidationException(string res, string[] args, Exception innerException, string sourceUri, int lineNumber, int linePosition)
|
|
{
|
|
}
|
|
}
|
|
}
|