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

◆ WriteRaw() [2/2]

override void System.Xml.XmlWellFormedWriter.WriteRaw ( string data)
inline

Definition at line 2121 of file XmlWellFormedWriter.cs.

2122 {
2123 try
2124 {
2125 if (data != null)
2126 {
2127 AdvanceState(Token.RawData);
2128 if (SaveAttrValue)
2129 {
2131 }
2132 else
2133 {
2134 _writer.WriteRaw(data);
2135 }
2136 }
2137 }
2138 catch
2139 {
2140 _currentState = State.Error;
2141 throw;
2142 }
2143 }
void WriteRaw(char[] buffer, int index, int count)
void WriteRaw(char[] buffer, int index, int count)

References System.Xml.XmlWellFormedWriter._attrValueCache, System.Xml.XmlWellFormedWriter._currentState, System.Xml.XmlWellFormedWriter._writer, System.Xml.XmlWellFormedWriter.AdvanceState(), System.Xml.XmlWellFormedWriter.SaveAttrValue, System.Xml.XmlWellFormedWriter.AttributeValueCache.WriteRaw(), and System.Xml.XmlWriter.WriteRaw().