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

◆ WriteStartElementAsync() [1/2]

override Task System.Xml.XmlEncodedRawTextWriter.WriteStartElementAsync ( string prefix,
string localName,
string ns )
inline

Definition at line 1733 of file XmlEncodedRawTextWriter.cs.

1734 {
1737 {
1739 }
1740 _bufChars[_bufPos++] = '<';
1741 Task task = ((prefix == null || prefix.Length == 0) ? RawTextAsync(localName) : RawTextAsync(prefix, ":", localName));
1742 return task.CallVoidFuncWhenFinishAsync(delegate(XmlEncodedRawTextWriter thisRef)
1743 {
1744 thisRef.WriteStartElementAsync_SetAttEndPos();
1745 }, this);
1746 }
XmlEncodedRawTextWriter(XmlWriterSettings settings)

References System.Xml.XmlEncodedRawTextWriter._bufChars, System.Xml.XmlEncodedRawTextWriter._bufPos, System.Xml.XmlEncodedRawTextWriter._inTextContent, System.Xml.XmlEncodedRawTextWriter._trackTextContent, System.Xml.XmlEncodedRawTextWriter.ChangeTextContentMark(), System.Xml.XmlEncodedRawTextWriter.CheckAsyncCall(), System.Xml.Dictionary, System.prefix, System.Xml.XmlEncodedRawTextWriter.RawTextAsync(), System.task, and System.value.