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

◆ WriteValue() [2/20]

override void System.Xml.XmlBaseWriter.WriteValue ( bool value)
inlinevirtualinherited

Reimplemented from System.Xml.XmlWriter.

Definition at line 2134 of file XmlBaseWriter.cs.

2135 {
2136 if (IsClosed)
2137 {
2138 ThrowClosed();
2139 }
2140 FlushBase64();
2141 if (_attributeValue != null)
2142 {
2143 WriteAttributeText(XmlConverter.ToString(value));
2144 }
2145 if (!_isXmlnsAttribute)
2146 {
2147 StartContent();
2149 EndContent();
2150 }
2151 }
void WriteAttributeText(string value)
void WriteBoolText(bool value)

References System.Xml.XmlBaseWriter._attributeValue, System.Xml.XmlBaseWriter._isXmlnsAttribute, System.Xml.XmlBaseWriter._writer, System.Xml.XmlBaseWriter.EndContent(), System.Xml.XmlBaseWriter.FlushBase64(), System.Xml.XmlBaseWriter.IsClosed, System.Xml.XmlBaseWriter.StartContent(), System.Xml.XmlBaseWriter.ThrowClosed(), System.Xml.XmlConverter.ToString(), System.value, System.Xml.XmlBaseWriter.WriteAttributeText(), and System.Xml.XmlNodeWriter.WriteBoolText().