a
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Schema
|
||||
{
|
||||
/// <summary>Returns detailed information related to the <see langword="ValidationEventHandler" />.</summary>
|
||||
// Token: 0x02000104 RID: 260
|
||||
[Token(Token = "0x2000104")]
|
||||
public class ValidationEventArgs : EventArgs
|
||||
{
|
||||
/// <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: 0x170002E8 RID: 744
|
||||
// (get) Token: 0x06000829 RID: 2089 RVA: 0x00005520 File Offset: 0x00003720
|
||||
[Token(Token = "0x170002E8")]
|
||||
public XmlSeverityType Severity
|
||||
{
|
||||
[Token(Token = "0x6000829")]
|
||||
[Address(RVA = "0x40B720", Offset = "0x40A520", VA = "0x18040B720")]
|
||||
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: 0x170002E9 RID: 745
|
||||
// (get) Token: 0x0600082A RID: 2090 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002E9")]
|
||||
public XmlSchemaException Exception
|
||||
{
|
||||
[Token(Token = "0x600082A")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040003F7 RID: 1015
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40003F7")]
|
||||
private XmlSchemaException ex;
|
||||
|
||||
// Token: 0x040003F8 RID: 1016
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40003F8")]
|
||||
private XmlSeverityType severity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user