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

◆ WriteRaw()

void System.Xml.XmlTextEncoder.WriteRaw ( char[] array,
int offset,
int count )
inlinepackage

Definition at line 389 of file XmlTextEncoder.cs.

390 {
391 if (array == null)
392 {
393 throw new ArgumentNullException("array");
394 }
395 if (0 > count)
396 {
397 throw new ArgumentOutOfRangeException("count");
398 }
399 if (0 > offset)
400 {
401 throw new ArgumentOutOfRangeException("offset");
402 }
403 if (count > array.Length - offset)
404 {
405 throw new ArgumentOutOfRangeException("count");
406 }
407 if (_cacheAttrValue)
408 {
410 }
412 }
virtual void Write(char value)
StringBuilder Append(char value, int repeatCount)
readonly TextWriter _textWriter

References System.Xml.XmlTextEncoder._attrValue, System.Xml.XmlTextEncoder._cacheAttrValue, System.Xml.XmlTextEncoder._textWriter, System.Text.StringBuilder.Append(), System.array, System.count, System.offset, and System.IO.TextWriter.Write().

Referenced by System.Xml.XmlTextWriterBase64Encoder.WriteChars().