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

◆ WriteCData() [1/2]

override void System.Xml.XmlWellFormedWriter.WriteCData ( string text)
inline

Definition at line 1839 of file XmlWellFormedWriter.cs.

1840 {
1841 try
1842 {
1843 if (text == null)
1844 {
1845 text = string.Empty;
1846 }
1847 AdvanceState(Token.CData);
1849 }
1850 catch
1851 {
1852 _currentState = State.Error;
1853 throw;
1854 }
1855 }
void WriteCData(string? text)

References System.Xml.XmlWellFormedWriter._currentState, System.Xml.XmlWellFormedWriter._writer, System.Xml.XmlWellFormedWriter.AdvanceState(), System.text, and System.Xml.XmlWriter.WriteCData().