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

◆ WriteElementString() [3/3]

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

Definition at line 427 of file XmlWriter.cs.

428 {
429 WriteStartElement(prefix, localName, ns);
430 if (value != null && value.Length != 0)
431 {
433 }
435 }
void WriteString(string? text)
void WriteStartElement(string localName, string? ns)
Definition XmlWriter.cs:30

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