Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaFacet.cs
Go to the documentation of this file.
1
using
System.ComponentModel
;
2
using
System.Xml.Serialization
;
3
4
namespace
System.Xml.Schema
;
5
6
public
abstract
class
XmlSchemaFacet
:
XmlSchemaAnnotated
7
{
8
private
string
_value
;
9
10
private
bool
_isFixed
;
11
12
private
FacetType
_facetType
;
13
14
[
XmlAttribute
(
"value"
)]
15
public
string
?
Value
16
{
17
get
18
{
19
return
_value
;
20
}
21
set
22
{
23
_value
=
value
;
24
}
25
}
26
27
[
XmlAttribute
(
"fixed"
)]
28
[DefaultValue(
false
)]
29
public
virtual
bool
IsFixed
30
{
31
get
32
{
33
return
_isFixed
;
34
}
35
set
36
{
37
if
(!(
this
is
XmlSchemaEnumerationFacet
) && !(
this
is
XmlSchemaPatternFacet
))
38
{
39
_isFixed
=
value
;
40
}
41
}
42
}
43
44
internal
FacetType
FacetType
45
{
46
get
47
{
48
return
_facetType
;
49
}
50
set
51
{
52
_facetType
=
value
;
53
}
54
}
55
}
System.Xml.Schema.XmlSchemaAnnotated
Definition
XmlSchemaAnnotated.cs:6
System.Xml.Schema.XmlSchemaEnumerationFacet
Definition
XmlSchemaEnumerationFacet.cs:4
System.Xml.Schema.XmlSchemaFacet.Value
string? Value
Definition
XmlSchemaFacet.cs:16
System.Xml.Schema.XmlSchemaFacet.IsFixed
virtual bool IsFixed
Definition
XmlSchemaFacet.cs:30
System.Xml.Schema.XmlSchemaFacet._value
string _value
Definition
XmlSchemaFacet.cs:8
System.Xml.Schema.XmlSchemaFacet._facetType
FacetType _facetType
Definition
XmlSchemaFacet.cs:12
System.Xml.Schema.XmlSchemaFacet._isFixed
bool _isFixed
Definition
XmlSchemaFacet.cs:10
System.Xml.Schema.XmlSchemaFacet
Definition
XmlSchemaFacet.cs:7
System.Xml.Schema.XmlSchemaPatternFacet
Definition
XmlSchemaPatternFacet.cs:4
System.Xml.XmlAttribute
Definition
XmlAttribute.cs:8
System.ComponentModel
Definition
ColumnAttribute.cs:3
System.Xml.Schema.FacetType
FacetType
Definition
FacetType.cs:4
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
XmlSchemaFacet.cs
Generated by
1.10.0