Terraria v1.4.4.9
Terraria source code documentation
|
Public Member Functions | |
void | OmitXmlDecl () |
Processor.OutputResult | RecordDone (RecordBuilder record) |
void | TheEnd () |
Protected Attributes | |
Encoding | encoding |
Package Functions | |
TextOutput (Processor processor, Stream stream) | |
TextOutput (Processor processor, TextWriter writer) | |
override void | Write (char outputChar) |
override void | Write (string outputText) |
override void | Close () |
Static Private Attributes | |
static readonly char[] | s_TextValueFind = new char[3] { '&', '>', '<' } |
static readonly string[] | s_TextValueReplace = new string[3] { "&", ">", "<" } |
static readonly char[] | s_XmlAttributeValueFind = new char[6] { '&', '>', '<', '"', '\n', '\r' } |
static readonly string[] | s_XmlAttributeValueReplace = new string[6] { "&", ">", "<", """, "
", "
" } |
Definition at line 5 of file TextOutput.cs.