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

◆ XmlUtf8RawTextWriter() [1/2]

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

Definition at line 77 of file XmlUtf8RawTextWriter.cs.

78 {
79 _useAsync = settings.Async;
80 _newLineHandling = settings.NewLineHandling;
81 _omitXmlDeclaration = settings.OmitXmlDeclaration;
82 _newLineChars = settings.NewLineChars;
83 _checkCharacters = settings.CheckCharacters;
84 _closeOutput = settings.CloseOutput;
85 _standalone = settings.Standalone;
86 _outputMethod = settings.OutputMethod;
87 _mergeCDataSections = settings.MergeCDataSections;
88 if (_checkCharacters && _newLineHandling == NewLineHandling.Replace)
89 {
91 }
92 }
void ValidateContentChars(string chars, string propertyName, bool allowOnlyWhitespace)

References System.Xml.XmlUtf8RawTextWriter._checkCharacters, System.Xml.XmlUtf8RawTextWriter._closeOutput, System.Xml.XmlUtf8RawTextWriter._mergeCDataSections, System.Xml.XmlUtf8RawTextWriter._newLineChars, System.Xml.XmlUtf8RawTextWriter._newLineHandling, System.Xml.XmlUtf8RawTextWriter._omitXmlDeclaration, System.Xml.XmlUtf8RawTextWriter._outputMethod, System.Xml.XmlUtf8RawTextWriter._standalone, System.Xml.XmlUtf8RawTextWriter._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.XmlUtf8RawTextWriter.ValidateContentChars().