Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaImport.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaImport
:
XmlSchemaExternal
6
{
7
private
string
_ns
;
8
9
private
XmlSchemaAnnotation
_annotation
;
10
11
[
XmlAttribute
(
"namespace"
, DataType =
"anyURI"
)]
12
public
string
?
Namespace
13
{
14
get
15
{
16
return
_ns
;
17
}
18
set
19
{
20
_ns
=
value
;
21
}
22
}
23
24
[
XmlElement
(
"annotation"
,
typeof
(
XmlSchemaAnnotation
))]
25
public
XmlSchemaAnnotation
?
Annotation
26
{
27
get
28
{
29
return
_annotation
;
30
}
31
set
32
{
33
_annotation
=
value
;
34
}
35
}
36
37
public
XmlSchemaImport
()
38
{
39
base.Compositor
=
Compositor
.Import;
40
}
41
42
internal
override
void
AddAnnotation
(
XmlSchemaAnnotation
annotation)
43
{
44
_annotation
= annotation;
45
}
46
}
System.Xml.Schema.XmlSchemaAnnotation
Definition
XmlSchemaAnnotation.cs:6
System.Xml.Schema.XmlSchemaExternal
Definition
XmlSchemaExternal.cs:6
System.Xml.Schema.XmlSchemaImport.Annotation
XmlSchemaAnnotation? Annotation
Definition
XmlSchemaImport.cs:26
System.Xml.Schema.XmlSchemaImport._ns
string _ns
Definition
XmlSchemaImport.cs:7
System.Xml.Schema.XmlSchemaImport.XmlSchemaImport
XmlSchemaImport()
Definition
XmlSchemaImport.cs:37
System.Xml.Schema.XmlSchemaImport.Namespace
string? Namespace
Definition
XmlSchemaImport.cs:13
System.Xml.Schema.XmlSchemaImport._annotation
XmlSchemaAnnotation _annotation
Definition
XmlSchemaImport.cs:9
System.Xml.Schema.XmlSchemaImport.AddAnnotation
override void AddAnnotation(XmlSchemaAnnotation annotation)
Definition
XmlSchemaImport.cs:42
System.Xml.Schema.XmlSchemaImport
Definition
XmlSchemaImport.cs:6
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.Xml.XmlElement
Definition
XmlElement.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
XmlSchemaImport.cs
Generated by
1.10.0