Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaGroupRef.cs
Go to the documentation of this file.
1
using
System.Xml.Serialization
;
2
3
namespace
System.Xml.Schema
;
4
5
public
class
XmlSchemaGroupRef
:
XmlSchemaParticle
6
{
7
private
XmlQualifiedName
_refName
=
XmlQualifiedName
.
Empty
;
8
9
private
XmlSchemaGroupBase
_particle
;
10
11
private
XmlSchemaGroup
_refined
;
12
13
[
XmlAttribute
(
"ref"
)]
14
public
XmlQualifiedName
RefName
15
{
16
get
17
{
18
return
_refName
;
19
}
20
set
21
{
22
_refName
= ((
value
==
null
) ?
XmlQualifiedName
.
Empty
:
value
);
23
}
24
}
25
26
[XmlIgnore]
27
public
XmlSchemaGroupBase
?
Particle
=>
_particle
;
28
29
[XmlIgnore]
30
internal
XmlSchemaGroup
?
Redefined
31
{
32
get
33
{
34
return
_refined
;
35
}
36
set
37
{
38
_refined
=
value
;
39
}
40
}
41
42
internal
void
SetParticle
(
XmlSchemaGroupBase
value
)
43
{
44
_particle
=
value
;
45
}
46
}
System.Xml.Schema.XmlSchemaGroupBase
Definition
XmlSchemaGroupBase.cs:6
System.Xml.Schema.XmlSchemaGroupRef._particle
XmlSchemaGroupBase _particle
Definition
XmlSchemaGroupRef.cs:9
System.Xml.Schema.XmlSchemaGroupRef.RefName
XmlQualifiedName RefName
Definition
XmlSchemaGroupRef.cs:15
System.Xml.Schema.XmlSchemaGroupRef.Redefined
XmlSchemaGroup? Redefined
Definition
XmlSchemaGroupRef.cs:31
System.Xml.Schema.XmlSchemaGroupRef._refined
XmlSchemaGroup _refined
Definition
XmlSchemaGroupRef.cs:11
System.Xml.Schema.XmlSchemaGroupRef.Particle
XmlSchemaGroupBase? Particle
Definition
XmlSchemaGroupRef.cs:27
System.Xml.Schema.XmlSchemaGroupRef._refName
XmlQualifiedName _refName
Definition
XmlSchemaGroupRef.cs:7
System.Xml.Schema.XmlSchemaGroupRef.SetParticle
void SetParticle(XmlSchemaGroupBase value)
Definition
XmlSchemaGroupRef.cs:42
System.Xml.Schema.XmlSchemaGroupRef
Definition
XmlSchemaGroupRef.cs:6
System.Xml.Schema.XmlSchemaGroup
Definition
XmlSchemaGroup.cs:6
System.Xml.Schema.XmlSchemaParticle
Definition
XmlSchemaParticle.cs:6
System.Xml.XmlAttribute
Definition
XmlAttribute.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.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Schema
XmlSchemaGroupRef.cs
Generated by
1.10.0