Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SchemaNotation.cs
Go to the documentation of this file.
1
namespace
System.Xml.Schema
;
2
3
internal
sealed
class
SchemaNotation
4
{
5
private
readonly
XmlQualifiedName
_name
;
6
7
private
string
_systemLiteral
;
8
9
private
string
_pubid
;
10
11
internal
XmlQualifiedName
Name
=>
_name
;
12
13
internal
string
SystemLiteral
14
{
15
get
16
{
17
return
_systemLiteral
;
18
}
19
set
20
{
21
_systemLiteral
=
value
;
22
}
23
}
24
25
internal
string
Pubid
26
{
27
get
28
{
29
return
_pubid
;
30
}
31
set
32
{
33
_pubid
=
value
;
34
}
35
}
36
37
internal
SchemaNotation
(
XmlQualifiedName
name)
38
{
39
_name
= name;
40
}
41
}
System.Xml.Schema.SchemaNotation._pubid
string _pubid
Definition
SchemaNotation.cs:9
System.Xml.Schema.SchemaNotation._name
readonly XmlQualifiedName _name
Definition
SchemaNotation.cs:5
System.Xml.Schema.SchemaNotation.SchemaNotation
SchemaNotation(XmlQualifiedName name)
Definition
SchemaNotation.cs:37
System.Xml.Schema.SchemaNotation._systemLiteral
string _systemLiteral
Definition
SchemaNotation.cs:7
System.Xml.Schema.SchemaNotation.Pubid
string Pubid
Definition
SchemaNotation.cs:26
System.Xml.Schema.SchemaNotation.SystemLiteral
string SystemLiteral
Definition
SchemaNotation.cs:14
System.Xml.Schema.SchemaNotation.Name
XmlQualifiedName Name
Definition
SchemaNotation.cs:11
System.Xml.Schema.SchemaNotation
Definition
SchemaNotation.cs:4
System.Xml.XmlQualifiedName
Definition
XmlQualifiedName.cs:6
System.Xml.Schema
Definition
Extensions.cs:3
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Schema
SchemaNotation.cs
Generated by
1.10.0