Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaComplexContent.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaComplexContent
:
XmlSchemaContentModel
6
{
7
private
XmlSchemaContent
_content
;
8
9
private
bool
_isMixed
;
10
11
private
bool
_hasMixedAttribute
;
12
13
[
XmlAttribute
(
"mixed"
)]
14
public
bool
IsMixed
15
{
16
get
17
{
18
return
_isMixed
;
19
}
20
set
21
{
22
_isMixed
=
value
;
23
_hasMixedAttribute
=
true
;
24
}
25
}
26
27
[
XmlElement
(
"restriction"
,
typeof
(
XmlSchemaComplexContentRestriction
))]
28
[
XmlElement
(
"extension"
,
typeof
(
XmlSchemaComplexContentExtension
))]
29
public
override
XmlSchemaContent
? Content
30
{
31
get
32
{
33
return
_content
;
34
}
35
set
36
{
37
_content
=
value
;
38
}
39
}
40
41
[XmlIgnore]
42
internal
bool
HasMixedAttribute
=>
_hasMixedAttribute
;
43
}
System.Xml.Schema.XmlSchemaComplexContentExtension
Definition
XmlSchemaComplexContentExtension.cs:6
System.Xml.Schema.XmlSchemaComplexContentRestriction
Definition
XmlSchemaComplexContentRestriction.cs:6
System.Xml.Schema.XmlSchemaComplexContent.HasMixedAttribute
bool HasMixedAttribute
Definition
XmlSchemaComplexContent.cs:42
System.Xml.Schema.XmlSchemaComplexContent._content
XmlSchemaContent _content
Definition
XmlSchemaComplexContent.cs:7
System.Xml.Schema.XmlSchemaComplexContent._hasMixedAttribute
bool _hasMixedAttribute
Definition
XmlSchemaComplexContent.cs:11
System.Xml.Schema.XmlSchemaComplexContent._isMixed
bool _isMixed
Definition
XmlSchemaComplexContent.cs:9
System.Xml.Schema.XmlSchemaComplexContent.IsMixed
bool IsMixed
Definition
XmlSchemaComplexContent.cs:15
System.Xml.Schema.XmlSchemaComplexContent
Definition
XmlSchemaComplexContent.cs:6
System.Xml.Schema.XmlSchemaContentModel
Definition
XmlSchemaContentModel.cs:6
System.Xml.Schema.XmlSchemaContent
Definition
XmlSchemaContent.cs:4
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
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
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Schema
XmlSchemaComplexContent.cs
Generated by
1.10.0