Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaSimpleContentExtension.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaSimpleContentExtension
:
XmlSchemaContent
6
{
7
private
XmlSchemaObjectCollection
_attributes
=
new
XmlSchemaObjectCollection
();
8
9
private
XmlSchemaAnyAttribute
_anyAttribute
;
10
11
private
XmlQualifiedName
_baseTypeName
=
XmlQualifiedName
.
Empty
;
12
13
[
XmlAttribute
(
"base"
)]
14
public
XmlQualifiedName
BaseTypeName
15
{
16
get
17
{
18
return
_baseTypeName
;
19
}
20
set
21
{
22
_baseTypeName
= ((
value
==
null
) ?
XmlQualifiedName
.
Empty
:
value
);
23
}
24
}
25
26
[
XmlElement
(
"attribute"
,
typeof
(
XmlSchemaAttribute
))]
27
[
XmlElement
(
"attributeGroup"
,
typeof
(
XmlSchemaAttributeGroupRef
))]
28
public
XmlSchemaObjectCollection
Attributes
=>
_attributes
;
29
30
[
XmlElement
(
"anyAttribute"
)]
31
public
XmlSchemaAnyAttribute
?
AnyAttribute
32
{
33
get
34
{
35
return
_anyAttribute
;
36
}
37
set
38
{
39
_anyAttribute
=
value
;
40
}
41
}
42
43
internal
void
SetAttributes
(
XmlSchemaObjectCollection
newAttributes
)
44
{
45
_attributes
=
newAttributes
;
46
}
47
}
System.Xml.Schema.XmlSchemaAnyAttribute
Definition
XmlSchemaAnyAttribute.cs:7
System.Xml.Schema.XmlSchemaAttributeGroupRef
Definition
XmlSchemaAttributeGroupRef.cs:7
System.Xml.Schema.XmlSchemaAttribute
Definition
XmlSchemaAttribute.cs:8
System.Xml.Schema.XmlSchemaContent
Definition
XmlSchemaContent.cs:4
System.Xml.Schema.XmlSchemaObjectCollection
Definition
XmlSchemaObjectCollection.cs:6
System.Xml.Schema.XmlSchemaSimpleContentExtension._anyAttribute
XmlSchemaAnyAttribute _anyAttribute
Definition
XmlSchemaSimpleContentExtension.cs:9
System.Xml.Schema.XmlSchemaSimpleContentExtension._attributes
XmlSchemaObjectCollection _attributes
Definition
XmlSchemaSimpleContentExtension.cs:7
System.Xml.Schema.XmlSchemaSimpleContentExtension._baseTypeName
XmlQualifiedName _baseTypeName
Definition
XmlSchemaSimpleContentExtension.cs:11
System.Xml.Schema.XmlSchemaSimpleContentExtension.SetAttributes
void SetAttributes(XmlSchemaObjectCollection newAttributes)
Definition
XmlSchemaSimpleContentExtension.cs:43
System.Xml.Schema.XmlSchemaSimpleContentExtension.Attributes
XmlSchemaObjectCollection Attributes
Definition
XmlSchemaSimpleContentExtension.cs:28
System.Xml.Schema.XmlSchemaSimpleContentExtension.AnyAttribute
XmlSchemaAnyAttribute? AnyAttribute
Definition
XmlSchemaSimpleContentExtension.cs:32
System.Xml.Schema.XmlSchemaSimpleContentExtension.BaseTypeName
XmlQualifiedName BaseTypeName
Definition
XmlSchemaSimpleContentExtension.cs:15
System.Xml.Schema.XmlSchemaSimpleContentExtension
Definition
XmlSchemaSimpleContentExtension.cs:6
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.Xml.XmlElement
Definition
XmlElement.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.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Schema
XmlSchemaSimpleContentExtension.cs
Generated by
1.10.0