System.Xml.Xsl.Runtime.XmlQueryOutput.WriteRaw C# (CSharp) Method

WriteRaw() public method

Write text, but do not escape special characters.
public WriteRaw ( char buffer, int index, int count ) : void
buffer char
index int
count int
return void
        public override void WriteRaw(char[] buffer, int index, int count) {
            throw new NotSupportedException();
        }

Same methods

XmlQueryOutput::WriteRaw ( string data ) : void