Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaAll.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaAll
:
XmlSchemaGroupBase
6
{
7
private
XmlSchemaObjectCollection
_items
=
new
XmlSchemaObjectCollection
();
8
9
[
XmlElement
(
"element"
,
typeof
(
XmlSchemaElement
))]
10
public
override
XmlSchemaObjectCollection
Items =>
_items
;
11
12
internal
override
bool
IsEmpty
13
{
14
get
15
{
16
if
(!
base
.IsEmpty)
17
{
18
return
_items.Count
== 0;
19
}
20
return
true
;
21
}
22
}
23
24
internal
override
void
SetItems
(
XmlSchemaObjectCollection
newItems
)
25
{
26
_items
=
newItems
;
27
}
28
}
System.Xml.Schema.XmlSchemaAll._items
XmlSchemaObjectCollection _items
Definition
XmlSchemaAll.cs:7
System.Xml.Schema.XmlSchemaAll.SetItems
override void SetItems(XmlSchemaObjectCollection newItems)
Definition
XmlSchemaAll.cs:24
System.Xml.Schema.XmlSchemaAll.IsEmpty
override bool IsEmpty
Definition
XmlSchemaAll.cs:13
System.Xml.Schema.XmlSchemaAll
Definition
XmlSchemaAll.cs:6
System.Xml.Schema.XmlSchemaElement
Definition
XmlSchemaElement.cs:8
System.Xml.Schema.XmlSchemaGroupBase
Definition
XmlSchemaGroupBase.cs:6
System.Xml.Schema.XmlSchemaObjectCollection
Definition
XmlSchemaObjectCollection.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
XmlSchemaAll.cs
Generated by
1.10.0