Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Schema/XmlSchemaInferenceException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

56 lines
2.9 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Returns information about errors encountered by the <see cref="T:System.Xml.Schema.XmlSchemaInference" /> class while inferring a schema from an XML document.</summary>
// Token: 0x020001DF RID: 479
[Token(Token = "0x20001DF")]
[Serializable]
public class XmlSchemaInferenceException : XmlSchemaException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects specified that contain all the properties of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" />.</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: 0x0600123F RID: 4671 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600123F")]
[Address(RVA = "0x56DF60", Offset = "0x56CF60", VA = "0x18056DF60")]
protected XmlSchemaInferenceException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Streams all the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> object properties into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object specified for the <see cref="T:System.Runtime.Serialization.StreamingContext" /> object 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: 0x06001240 RID: 4672 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001240")]
[Address(RVA = "0x82E130", Offset = "0x82D130", VA = "0x18082E130", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class.</summary>
// Token: 0x06001241 RID: 4673 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001241")]
[Address(RVA = "0x82ECC0", Offset = "0x82DCC0", VA = "0x18082ECC0")]
public XmlSchemaInferenceException()
{
}
// Token: 0x06001242 RID: 4674 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001242")]
[Address(RVA = "0x82F340", Offset = "0x82E340", VA = "0x18082F340")]
internal XmlSchemaInferenceException(string res, string arg)
{
}
// Token: 0x06001243 RID: 4675 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001243")]
[Address(RVA = "0x82F440", Offset = "0x82E440", VA = "0x18082F440")]
internal XmlSchemaInferenceException(string res, int lineNumber, int linePosition)
{
}
}
}