Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaAnnotation.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaAnnotation
:
XmlSchemaObject
6
{
7
private
string
_id
;
8
9
private
readonly
XmlSchemaObjectCollection
_items
=
new
XmlSchemaObjectCollection
();
10
11
private
XmlAttribute
[]
_moreAttributes
;
12
13
[
XmlAttribute
(
"id"
, DataType =
"ID"
)]
14
public
string
?
Id
15
{
16
get
17
{
18
return
_id
;
19
}
20
set
21
{
22
_id
=
value
;
23
}
24
}
25
26
[
XmlElement
(
"documentation"
,
typeof
(
XmlSchemaDocumentation
))]
27
[
XmlElement
(
"appinfo"
,
typeof
(
XmlSchemaAppInfo
))]
28
public
XmlSchemaObjectCollection
Items =>
_items
;
29
30
[XmlAnyAttribute]
31
public
XmlAttribute
[]?
UnhandledAttributes
32
{
33
get
34
{
35
return
_moreAttributes
;
36
}
37
set
38
{
39
_moreAttributes
=
value
;
40
}
41
}
42
43
[XmlIgnore]
44
internal
override
string
?
IdAttribute
45
{
46
get
47
{
48
return
Id
;
49
}
50
set
51
{
52
Id
=
value
;
53
}
54
}
55
56
internal
override
void
SetUnhandledAttributes
(
XmlAttribute
[]
moreAttributes
)
57
{
58
_moreAttributes
=
moreAttributes
;
59
}
60
}
System.Xml.Schema.XmlSchemaAnnotation._moreAttributes
XmlAttribute[] _moreAttributes
Definition
XmlSchemaAnnotation.cs:11
System.Xml.Schema.XmlSchemaAnnotation.UnhandledAttributes
XmlAttribute?[] UnhandledAttributes
Definition
XmlSchemaAnnotation.cs:32
System.Xml.Schema.XmlSchemaAnnotation._id
string _id
Definition
XmlSchemaAnnotation.cs:7
System.Xml.Schema.XmlSchemaAnnotation.Id
string? Id
Definition
XmlSchemaAnnotation.cs:15
System.Xml.Schema.XmlSchemaAnnotation._items
readonly XmlSchemaObjectCollection _items
Definition
XmlSchemaAnnotation.cs:9
System.Xml.Schema.XmlSchemaAnnotation.IdAttribute
override? string IdAttribute
Definition
XmlSchemaAnnotation.cs:45
System.Xml.Schema.XmlSchemaAnnotation.SetUnhandledAttributes
override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
Definition
XmlSchemaAnnotation.cs:56
System.Xml.Schema.XmlSchemaAnnotation
Definition
XmlSchemaAnnotation.cs:6
System.Xml.Schema.XmlSchemaAppInfo
Definition
XmlSchemaAppInfo.cs:6
System.Xml.Schema.XmlSchemaDocumentation
Definition
XmlSchemaDocumentation.cs:7
System.Xml.Schema.XmlSchemaObjectCollection
Definition
XmlSchemaObjectCollection.cs:6
System.Xml.Schema.XmlSchemaObject
Definition
XmlSchemaObject.cs:6
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.Xml.XmlElement
Definition
XmlElement.cs:8
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
XmlSchemaAnnotation.cs
Generated by
1.10.0