Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlBinaryNodeType.cs
Go to the documentation of this file.
1namespace System.Xml;
2
3internal enum XmlBinaryNodeType
4{
5 EndElement = 1,
6 Comment = 2,
7 Array = 3,
8 MinAttribute = 4,
10 Attribute = 5,
69 MaxAttribute = 63,
70 MinElement = 64,
71 ShortElement = 64,
72 Element = 65,
101 PrefixElementA = 94,
102 PrefixElementB = 95,
103 PrefixElementC = 96,
104 PrefixElementD = 97,
105 PrefixElementE = 98,
106 PrefixElementF = 99,
107 PrefixElementG = 100,
108 PrefixElementH = 101,
109 PrefixElementI = 102,
110 PrefixElementJ = 103,
111 PrefixElementK = 104,
112 PrefixElementL = 105,
113 PrefixElementM = 106,
114 PrefixElementN = 107,
115 PrefixElementO = 108,
116 PrefixElementP = 109,
117 PrefixElementQ = 110,
118 PrefixElementR = 111,
119 PrefixElementS = 112,
120 PrefixElementT = 113,
121 PrefixElementU = 114,
122 PrefixElementV = 115,
123 PrefixElementW = 116,
124 PrefixElementX = 117,
125 PrefixElementY = 118,
126 PrefixElementZ = 119,
127 MaxElement = 119,
128 MinText = 128,
129 ZeroText = 128,
130 OneText = 130,
131 FalseText = 132,
132 TrueText = 134,
133 Int8Text = 136,
134 Int16Text = 138,
135 Int32Text = 140,
136 Int64Text = 142,
137 FloatText = 144,
138 DoubleText = 146,
139 DecimalText = 148,
140 DateTimeText = 150,
141 Chars8Text = 152,
142 Chars16Text = 154,
143 Chars32Text = 156,
144 Bytes8Text = 158,
145 Bytes16Text = 160,
146 Bytes32Text = 162,
147 StartListText = 164,
148 EndListText = 166,
149 EmptyText = 168,
150 DictionaryText = 170,
151 UniqueIdText = 172,
152 TimeSpanText = 174,
153 GuidText = 176,
154 UInt64Text = 178,
155 BoolText = 180,
156 UnicodeChars8Text = 182,
157 UnicodeChars16Text = 184,
158 UnicodeChars32Text = 186,
191 MaxText = 189
192}