Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ValidationEventArgs.cs
Go to the documentation of this file.
1
namespace
System.Xml.Schema
;
2
3
public
class
ValidationEventArgs
:
EventArgs
4
{
5
private
readonly
XmlSchemaException
_ex
;
6
7
private
readonly
XmlSeverityType
_severity
;
8
9
public
XmlSeverityType
Severity
=>
_severity
;
10
11
public
XmlSchemaException
Exception
=>
_ex
;
12
13
public
string
Message
=>
_ex
.
Message
;
14
15
internal
ValidationEventArgs
(
XmlSchemaException
ex
)
16
{
17
_ex
=
ex
;
18
_severity
=
XmlSeverityType
.Error;
19
}
20
21
internal
ValidationEventArgs
(
XmlSchemaException
ex
,
XmlSeverityType
severity
)
22
{
23
_ex
=
ex
;
24
_severity
=
severity
;
25
}
26
}
System.EventArgs
Definition
EventArgs.cs:8
System.Exception
Definition
Exception.cs:15
System.Xml.Schema.ValidationEventArgs.ValidationEventArgs
ValidationEventArgs(XmlSchemaException ex)
Definition
ValidationEventArgs.cs:15
System.Xml.Schema.ValidationEventArgs.ValidationEventArgs
ValidationEventArgs(XmlSchemaException ex, XmlSeverityType severity)
Definition
ValidationEventArgs.cs:21
System.Xml.Schema.ValidationEventArgs._severity
readonly XmlSeverityType _severity
Definition
ValidationEventArgs.cs:7
System.Xml.Schema.ValidationEventArgs._ex
readonly XmlSchemaException _ex
Definition
ValidationEventArgs.cs:5
System.Xml.Schema.ValidationEventArgs.Message
string Message
Definition
ValidationEventArgs.cs:13
System.Xml.Schema.ValidationEventArgs.Severity
XmlSeverityType Severity
Definition
ValidationEventArgs.cs:9
System.Xml.Schema.ValidationEventArgs
Definition
ValidationEventArgs.cs:4
System.Xml.Schema.XmlSchemaException.Message
override string Message
Definition
XmlSchemaException.cs:38
System.Xml.Schema.XmlSchemaException
Definition
XmlSchemaException.cs:10
System.Xml.Schema.XmlSeverityType
XmlSeverityType
Definition
XmlSeverityType.cs:4
System.Xml.Schema
Definition
Extensions.cs:3
System.Xml.ValueHandleType.Dictionary
@ Dictionary
source
System.Private.Xml
System.Xml.Schema
ValidationEventArgs.cs
Generated by
1.10.0