Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaDerivationMethod.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
5[Flags]
7{
8 [XmlEnum("")]
9 Empty = 0,
10 [XmlEnum("substitution")]
11 Substitution = 1,
12 [XmlEnum("extension")]
13 Extension = 2,
14 [XmlEnum("restriction")]
15 Restriction = 4,
16 [XmlEnum("list")]
17 List = 8,
18 [XmlEnum("union")]
19 Union = 0x10,
20 [XmlEnum("#all")]
21 All = 0xFF,
22 [XmlIgnore]
23 None = 0x100
24}