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

◆ WriteValue() [8/20]

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

Reimplemented from System.Xml.XmlDictionaryWriter.

Definition at line 2257 of file XmlBaseWriter.cs.

2258 {
2259 if (IsClosed)
2260 {
2261 ThrowClosed();
2262 }
2263 FlushBase64();
2264 if (_attributeValue != null)
2265 {
2266 WriteAttributeText(XmlConverter.ToString(value));
2267 }
2268 if (!_isXmlnsAttribute)
2269 {
2270 StartContent();
2272 EndContent();
2273 }
2274 }
void WriteAttributeText(string value)
void WriteGuidText(Guid 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.WriteGuidText().