Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaChoice.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaChoice
:
XmlSchemaGroupBase
6
{
7
private
XmlSchemaObjectCollection
_items
=
new
XmlSchemaObjectCollection
();
8
9
[
XmlElement
(
"element"
,
typeof
(
XmlSchemaElement
))]
10
[
XmlElement
(
"group"
,
typeof
(
XmlSchemaGroupRef
))]
11
[
XmlElement
(
"choice"
,
typeof
(
XmlSchemaChoice
))]
12
[
XmlElement
(
"sequence"
,
typeof
(
XmlSchemaSequence
))]
13
[
XmlElement
(
"any"
,
typeof
(
XmlSchemaAny
))]
14
public
override
XmlSchemaObjectCollection
Items =>
_items
;
15
16
internal
override
bool
IsEmpty
=>
base
.IsEmpty;
17
18
internal
override
void
SetItems
(
XmlSchemaObjectCollection
newItems
)
19
{
20
_items
=
newItems
;
21
}
22
}
System.Xml.Schema.XmlSchemaAny
Definition
XmlSchemaAny.cs:8
System.Xml.Schema.XmlSchemaChoice.SetItems
override void SetItems(XmlSchemaObjectCollection newItems)
Definition
XmlSchemaChoice.cs:18
System.Xml.Schema.XmlSchemaChoice.IsEmpty
override bool IsEmpty
Definition
XmlSchemaChoice.cs:16
System.Xml.Schema.XmlSchemaChoice._items
XmlSchemaObjectCollection _items
Definition
XmlSchemaChoice.cs:7
System.Xml.Schema.XmlSchemaChoice
Definition
XmlSchemaChoice.cs:6
System.Xml.Schema.XmlSchemaElement
Definition
XmlSchemaElement.cs:8
System.Xml.Schema.XmlSchemaGroupBase
Definition
XmlSchemaGroupBase.cs:6
System.Xml.Schema.XmlSchemaGroupRef
Definition
XmlSchemaGroupRef.cs:6
System.Xml.Schema.XmlSchemaObjectCollection
Definition
XmlSchemaObjectCollection.cs:6
System.Xml.Schema.XmlSchemaSequence
Definition
XmlSchemaSequence.cs:6
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
source
System.Private.Xml
System.Xml.Schema
XmlSchemaChoice.cs
Generated by
1.10.0