Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaDocumentation.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
using
System.Xml.Serialization
;
3
4
namespace
System.Xml.Schema
;
5
6
public
class
XmlSchemaDocumentation
:
XmlSchemaObject
7
{
8
private
string
_source
;
9
10
private
string
_language
;
11
12
private
XmlNode
[]
_markup
;
13
14
private
static
readonly
XmlSchemaSimpleType
s_languageType
=
DatatypeImplementation
.
GetSimpleTypeFromXsdType
(
new
XmlQualifiedName
(
"language"
,
"http://www.w3.org/2001/XMLSchema"
));
15
16
[
XmlAttribute
(
"source"
, DataType =
"anyURI"
)]
17
public
string
?
Source
18
{
19
get
20
{
21
return
_source
;
22
}
23
set
24
{
25
_source
=
value
;
26
}
27
}
28
29
[
XmlAttribute
(
"xml:lang"
)]
30
public
string
?
Language
31
{
32
get
33
{
34
return
_language
;
35
}
36
[
param
:
DisallowNull
]
37
set
38
{
39
_language
= (
string
)
s_languageType
.Datatype.ParseValue(
value
,
null
,
null
);
40
}
41
}
42
43
[
XmlText
]
44
[
XmlAnyElement
]
45
public
XmlNode
?[]? Markup
46
{
47
get
48
{
49
return
_markup
;
50
}
51
set
52
{
53
_markup
=
value
;
54
}
55
}
56
}
System.Xml.Schema.DatatypeImplementation.GetSimpleTypeFromXsdType
static XmlSchemaSimpleType GetSimpleTypeFromXsdType(XmlQualifiedName qname)
Definition
DatatypeImplementation.cs:621
System.Xml.Schema.DatatypeImplementation
Definition
DatatypeImplementation.cs:6
System.Xml.Schema.XmlSchemaDocumentation.Language
string? Language
Definition
XmlSchemaDocumentation.cs:31
System.Xml.Schema.XmlSchemaDocumentation.s_languageType
static readonly XmlSchemaSimpleType s_languageType
Definition
XmlSchemaDocumentation.cs:14
System.Xml.Schema.XmlSchemaDocumentation.Source
string? Source
Definition
XmlSchemaDocumentation.cs:18
System.Xml.Schema.XmlSchemaDocumentation._source
string _source
Definition
XmlSchemaDocumentation.cs:8
System.Xml.Schema.XmlSchemaDocumentation._language
string _language
Definition
XmlSchemaDocumentation.cs:10
System.Xml.Schema.XmlSchemaDocumentation._markup
XmlNode[] _markup
Definition
XmlSchemaDocumentation.cs:12
System.Xml.Schema.XmlSchemaDocumentation
Definition
XmlSchemaDocumentation.cs:7
System.Xml.Schema.XmlSchemaObject
Definition
XmlSchemaObject.cs:6
System.Xml.Schema.XmlSchemaSimpleType
Definition
XmlSchemaSimpleType.cs:6
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.Xml.XmlNode
Definition
XmlNode.cs:13
System.Xml.XmlQualifiedName
Definition
XmlQualifiedName.cs:6
string
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
System.Xml.Schema
Definition
Extensions.cs:3
System.Xml.Serialization
Definition
DateTimeSerializationSection.cs:1
System.Xml.BinXmlToken.XmlText
@ XmlText
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Schema
XmlSchemaDocumentation.cs
Generated by
1.10.0