Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaFacet.cs
Go to the documentation of this file.
3
4namespace System.Xml.Schema;
5
6public abstract class XmlSchemaFacet : XmlSchemaAnnotated
7{
8 private string _value;
9
10 private bool _isFixed;
11
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 {
38 {
40 }
41 }
42 }
43
45 {
46 get
47 {
48 return _facetType;
49 }
50 set
51 {
53 }
54 }
55}