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

◆ XmlEncodedRawTextWriter() [1/3]

System.Xml.XmlEncodedRawTextWriter.XmlEncodedRawTextWriter ( XmlWriterSettings settings)
inlineprotected

Definition at line 95 of file XmlEncodedRawTextWriter.cs.

96 {
97 _useAsync = settings.Async;
98 _newLineHandling = settings.NewLineHandling;
99 _omitXmlDeclaration = settings.OmitXmlDeclaration;
100 _newLineChars = settings.NewLineChars;
101 _checkCharacters = settings.CheckCharacters;
102 _closeOutput = settings.CloseOutput;
103 _standalone = settings.Standalone;
104 _outputMethod = settings.OutputMethod;
105 _mergeCDataSections = settings.MergeCDataSections;
106 if (_checkCharacters && _newLineHandling == NewLineHandling.Replace)
107 {
109 }
110 }
void ValidateContentChars(string chars, string propertyName, bool allowOnlyWhitespace)

References System.Xml.XmlEncodedRawTextWriter._checkCharacters, System.Xml.XmlEncodedRawTextWriter._closeOutput, System.Xml.XmlEncodedRawTextWriter._mergeCDataSections, System.Xml.XmlEncodedRawTextWriter._newLineChars, System.Xml.XmlEncodedRawTextWriter._newLineHandling, System.Xml.XmlEncodedRawTextWriter._omitXmlDeclaration, System.Xml.XmlEncodedRawTextWriter._outputMethod, System.Xml.XmlEncodedRawTextWriter._standalone, System.Xml.XmlEncodedRawTextWriter._useAsync, System.Xml.XmlWriterSettings.Async, System.Xml.XmlWriterSettings.CheckCharacters, System.Xml.XmlWriterSettings.CloseOutput, System.Xml.Dictionary, System.Xml.XmlWriterSettings.MergeCDataSections, System.Xml.XmlWriterSettings.NewLineChars, System.Xml.XmlWriterSettings.NewLineHandling, System.Xml.XmlWriterSettings.OmitXmlDeclaration, System.Xml.XmlWriterSettings.OutputMethod, System.Xml.XmlWriterSettings.Standalone, and System.Xml.XmlEncodedRawTextWriter.ValidateContentChars().