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

◆ WriteWhitespace() [1/2]

override void System.Xml.XmlBaseWriter.WriteWhitespace ( string whitespace)
inlineinherited

Definition at line 1744 of file XmlBaseWriter.cs.

1745 {
1746 if (IsClosed)
1747 {
1748 ThrowClosed();
1749 }
1750 if (whitespace == null)
1751 {
1753 }
1754 foreach (char c in whitespace)
1755 {
1756 if (c != ' ' && c != '\t' && c != '\n' && c != '\r')
1757 {
1759 }
1760 }
1762 }
static string XmlOnlyWhitespace
Definition SR.cs:482
Definition SR.cs:7
override void WriteString(string value)

References System.Xml.ArgumentException, System.Xml.Dictionary, System.Xml.XmlBaseWriter.IsClosed, System.Xml.XmlBaseWriter.ThrowClosed(), System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(), System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(), System.Xml.XmlBaseWriter.WriteString(), and System.SR.XmlOnlyWhitespace.