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

◆ WriteValue() [13/20]

void System.Xml.XmlBaseWriter.WriteValue ( object[] array)
inlineprivateinherited

Definition at line 2532 of file XmlBaseWriter.cs.

2533 {
2534 FlushBase64();
2535 StartContent();
2537 _inList = true;
2538 for (int i = 0; i < array.Length; i++)
2539 {
2540 if (i != 0)
2541 {
2543 }
2545 }
2546 _inList = false;
2548 EndContent();
2549 }
void WritePrimitiveValue(object value)

References System.Xml.XmlBaseWriter._inList, System.Xml.XmlBaseWriter._writer, System.array, System.Xml.XmlBaseWriter.EndContent(), System.Xml.XmlBaseWriter.FlushBase64(), System.Xml.XmlBaseWriter.StartContent(), System.Xml.XmlNodeWriter.WriteEndListText(), System.Xml.XmlNodeWriter.WriteListSeparator(), System.Xml.XmlBaseWriter.WritePrimitiveValue(), and System.Xml.XmlNodeWriter.WriteStartListText().