Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaExternal.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
abstract
class
XmlSchemaExternal
:
XmlSchemaObject
6
{
7
private
string
_location
;
8
9
private
Uri
_baseUri
;
10
11
private
XmlSchema
_schema
;
12
13
private
string
_id
;
14
15
private
XmlAttribute
[]
_moreAttributes
;
16
17
private
Compositor
_compositor
;
18
19
[
XmlAttribute
(
"schemaLocation"
, DataType =
"anyURI"
)]
20
public
string
?
SchemaLocation
21
{
22
get
23
{
24
return
_location
;
25
}
26
set
27
{
28
_location
=
value
;
29
}
30
}
31
32
[XmlIgnore]
33
public
XmlSchema
? Schema
34
{
35
get
36
{
37
return
_schema
;
38
}
39
set
40
{
41
_schema
=
value
;
42
}
43
}
44
45
[
XmlAttribute
(
"id"
, DataType =
"ID"
)]
46
public
string
?
Id
47
{
48
get
49
{
50
return
_id
;
51
}
52
set
53
{
54
_id
=
value
;
55
}
56
}
57
58
[XmlAnyAttribute]
59
public
XmlAttribute
[]?
UnhandledAttributes
60
{
61
get
62
{
63
return
_moreAttributes
;
64
}
65
set
66
{
67
_moreAttributes
=
value
;
68
}
69
}
70
71
[XmlIgnore]
72
internal
Uri
?
BaseUri
73
{
74
get
75
{
76
return
_baseUri
;
77
}
78
set
79
{
80
_baseUri
=
value
;
81
}
82
}
83
84
[XmlIgnore]
85
internal
override
string
?
IdAttribute
86
{
87
get
88
{
89
return
Id
;
90
}
91
set
92
{
93
Id
=
value
;
94
}
95
}
96
97
internal
Compositor
Compositor
98
{
99
get
100
{
101
return
_compositor
;
102
}
103
set
104
{
105
_compositor
=
value
;
106
}
107
}
108
109
internal
override
void
SetUnhandledAttributes
(
XmlAttribute
[]
moreAttributes
)
110
{
111
_moreAttributes
=
moreAttributes
;
112
}
113
}
System.Uri
Definition
Uri.cs:16
System.Xml.Schema.XmlSchemaExternal._id
string _id
Definition
XmlSchemaExternal.cs:13
System.Xml.Schema.XmlSchemaExternal.SetUnhandledAttributes
override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
Definition
XmlSchemaExternal.cs:109
System.Xml.Schema.XmlSchemaExternal._compositor
Compositor _compositor
Definition
XmlSchemaExternal.cs:17
System.Xml.Schema.XmlSchemaExternal.Id
string? Id
Definition
XmlSchemaExternal.cs:47
System.Xml.Schema.XmlSchemaExternal._location
string _location
Definition
XmlSchemaExternal.cs:7
System.Xml.Schema.XmlSchemaExternal.UnhandledAttributes
XmlAttribute?[] UnhandledAttributes
Definition
XmlSchemaExternal.cs:60
System.Xml.Schema.XmlSchemaExternal.IdAttribute
override? string IdAttribute
Definition
XmlSchemaExternal.cs:86
System.Xml.Schema.XmlSchemaExternal._moreAttributes
XmlAttribute[] _moreAttributes
Definition
XmlSchemaExternal.cs:15
System.Xml.Schema.XmlSchemaExternal.SchemaLocation
string? SchemaLocation
Definition
XmlSchemaExternal.cs:21
System.Xml.Schema.XmlSchemaExternal._baseUri
Uri _baseUri
Definition
XmlSchemaExternal.cs:9
System.Xml.Schema.XmlSchemaExternal._schema
XmlSchema _schema
Definition
XmlSchemaExternal.cs:11
System.Xml.Schema.XmlSchemaExternal.BaseUri
Uri? BaseUri
Definition
XmlSchemaExternal.cs:73
System.Xml.Schema.XmlSchemaExternal
Definition
XmlSchemaExternal.cs:6
System.Xml.Schema.XmlSchemaObject
Definition
XmlSchemaObject.cs:6
System.Xml.Schema.XmlSchema
Definition
XmlSchema.cs:12
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.Xml.Schema.Compositor
Compositor
Definition
Compositor.cs:4
System.Xml.Schema
Definition
Extensions.cs:3
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Schema
XmlSchemaExternal.cs
Generated by
1.10.0