Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ WriteElementString() [1/3]

void System.Xml.XmlWriter.WriteElementString ( string localName,
string? ns,
string? value )
inlineinherited

Definition at line 417 of file XmlWriter.cs.

418 {
419 WriteStartElement(localName, ns);
420 if (value != null && value.Length != 0)
421 {
423 }
425 }
void WriteString(string? text)
void WriteStartElement(string localName, string? ns)
Definition XmlWriter.cs:30

References System.value, System.Xml.XmlWriter.WriteEndElement(), System.Xml.XmlWriter.WriteStartElement(), and System.Xml.XmlWriter.WriteString().