Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaNotation.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaNotation
:
XmlSchemaAnnotated
6
{
7
private
string
_name
;
8
9
private
string
_publicId
;
10
11
private
string
_systemId
;
12
13
private
XmlQualifiedName
_qname
=
XmlQualifiedName
.
Empty
;
14
15
[
XmlAttribute
(
"name"
)]
16
public
string
?
Name
17
{
18
get
19
{
20
return
_name
;
21
}
22
set
23
{
24
_name
=
value
;
25
}
26
}
27
28
[
XmlAttribute
(
"public"
)]
29
public
string
?
Public
30
{
31
get
32
{
33
return
_publicId
;
34
}
35
set
36
{
37
_publicId
=
value
;
38
}
39
}
40
41
[
XmlAttribute
(
"system"
)]
42
public
string
?
System
43
{
44
get
45
{
46
return
_systemId
;
47
}
48
set
49
{
50
_systemId
=
value
;
51
}
52
}
53
54
[XmlIgnore]
55
internal
XmlQualifiedName
QualifiedName
56
{
57
get
58
{
59
return
_qname
;
60
}
61
set
62
{
63
_qname
=
value
;
64
}
65
}
66
67
[XmlIgnore]
68
internal
override
string
?
NameAttribute
69
{
70
get
71
{
72
return
Name
;
73
}
74
set
75
{
76
Name
=
value
;
77
}
78
}
79
}
System.Xml.Schema.XmlSchemaAnnotated
Definition
XmlSchemaAnnotated.cs:6
System.Xml.Schema.XmlSchemaNotation._systemId
string _systemId
Definition
XmlSchemaNotation.cs:11
System.Xml.Schema.XmlSchemaNotation.Name
string? Name
Definition
XmlSchemaNotation.cs:17
System.Xml.Schema.XmlSchemaNotation.QualifiedName
XmlQualifiedName QualifiedName
Definition
XmlSchemaNotation.cs:56
System.Xml.Schema.XmlSchemaNotation.Public
string? Public
Definition
XmlSchemaNotation.cs:30
System.Xml.Schema.XmlSchemaNotation._name
string _name
Definition
XmlSchemaNotation.cs:7
System.Xml.Schema.XmlSchemaNotation.NameAttribute
override? string NameAttribute
Definition
XmlSchemaNotation.cs:69
System.Xml.Schema.XmlSchemaNotation._qname
XmlQualifiedName _qname
Definition
XmlSchemaNotation.cs:13
System.Xml.Schema.XmlSchemaNotation._publicId
string _publicId
Definition
XmlSchemaNotation.cs:9
System.Xml.Schema.XmlSchemaNotation
Definition
XmlSchemaNotation.cs:6
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.Xml.XmlQualifiedName.Empty
static readonly XmlQualifiedName Empty
Definition
XmlQualifiedName.cs:13
System.Xml.XmlQualifiedName
Definition
XmlQualifiedName.cs:6
System.Xml.Schema
Definition
Extensions.cs:3
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
source
System.Private.Xml
System.Xml.Schema
XmlSchemaNotation.cs
Generated by
1.10.0