Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsAttributeValue

bool System.Runtime.Serialization.Json.XmlJsonReader.IsAttributeValue
getprivate

Definition at line 91 of file XmlJsonReader.cs.

92 {
93 get
94 {
95 if (base.Node.NodeType != XmlNodeType.Attribute)
96 {
97 return base.Node is XmlAttributeTextNode;
98 }
99 return true;
100 }
101 }

Referenced by System.Runtime.Serialization.Json.XmlJsonReader.ReadValueAsBase64(), and System.Runtime.Serialization.Json.XmlJsonReader.ReadValueChunk().