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

◆ HasNamespaceDecls

bool MS.Internal.Xml.Cache.XPathNode.HasNamespaceDecls
getset

Definition at line 91 of file XPathNode.cs.

92 {
93 get
94 {
95 return (_props & 0x200) != 0;
96 }
97 set
98 {
99 if (value)
100 {
101 _props |= 512u;
102 }
103 else
104 {
105 _props &= 255u;
106 }
107 }
108 }

Referenced by MS.Internal.Xml.Cache.XPathDocumentBuilder.WriteNamespaceDeclaration().