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

◆ XmlEncodedRawTextWriter() [2/3]

System.Xml.XmlEncodedRawTextWriter.XmlEncodedRawTextWriter ( TextWriter writer,
XmlWriterSettings settings )
inline

Definition at line 112 of file XmlEncodedRawTextWriter.cs.

113 : this(settings)
114 {
115 _writer = writer;
117 if (settings.Async)
118 {
119 _bufLen = 65536;
120 }
121 _bufChars = new char[_bufLen + 32];
122 if (settings.AutoXmlDeclaration)
123 {
125 _autoXmlDeclaration = true;
126 }
127 }
override void WriteXmlDeclaration(XmlStandalone standalone)

References System.Text.Encoding.Encoding(), System.Xml.XmlEncodedRawTextWriter._autoXmlDeclaration, System.Xml.XmlEncodedRawTextWriter._bufChars, System.Xml.XmlEncodedRawTextWriter._bufLen, System.Xml.XmlEncodedRawTextWriter._encoding, System.Xml.XmlEncodedRawTextWriter._standalone, System.Xml.XmlEncodedRawTextWriter._writer, System.Xml.XmlWriterSettings.Async, System.Xml.XmlWriterSettings.AutoXmlDeclaration, System.writer, and System.Xml.XmlEncodedRawTextWriter.WriteXmlDeclaration().