66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Returns detailed information related to the <see langword="ValidationEventHandler" />.</summary>
|
|
// Token: 0x020001F9 RID: 505
|
|
[Token(Token = "0x20001F9")]
|
|
public class ValidationEventArgs : EventArgs
|
|
{
|
|
// Token: 0x060013FE RID: 5118 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60013FE")]
|
|
[Address(RVA = "0x6BEB90", Offset = "0x6BDB90", VA = "0x1806BEB90")]
|
|
internal ValidationEventArgs(XmlSchemaException ex)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060013FF RID: 5119 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60013FF")]
|
|
[Address(RVA = "0x6BEB10", Offset = "0x6BDB10", VA = "0x1806BEB10")]
|
|
internal ValidationEventArgs(XmlSchemaException ex, XmlSeverityType severity)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the severity of the validation event.</summary>
|
|
/// <returns>An <see cref="T:System.Xml.Schema.XmlSeverityType" /> value representing the severity of the validation event.</returns>
|
|
// Token: 0x1700057A RID: 1402
|
|
// (get) Token: 0x06001400 RID: 5120 RVA: 0x00009258 File Offset: 0x00007458
|
|
[Token(Token = "0x1700057A")]
|
|
public XmlSeverityType Severity
|
|
{
|
|
[Token(Token = "0x6001400")]
|
|
[Address(RVA = "0x411540", Offset = "0x410540", VA = "0x180411540")]
|
|
get
|
|
{
|
|
return XmlSeverityType.Error;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaException" /> associated with the validation event.</summary>
|
|
/// <returns>The <see langword="XmlSchemaException" /> associated with the validation event.</returns>
|
|
// Token: 0x1700057B RID: 1403
|
|
// (get) Token: 0x06001401 RID: 5121 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700057B")]
|
|
public XmlSchemaException Exception
|
|
{
|
|
[Token(Token = "0x6001401")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000AED RID: 2797
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000AED")]
|
|
private XmlSchemaException ex;
|
|
|
|
// Token: 0x04000AEE RID: 2798
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000AEE")]
|
|
private XmlSeverityType severity;
|
|
}
|
|
}
|