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

WriteStringUnchecked() public method

Write a text block to the XmlRawWriter.
public WriteStringUnchecked ( string text ) : void
text string
return void
        public void WriteStringUnchecked(string text) {
            Debug.Assert(this.xstate != XmlState.WithinSequence && this.xstate != XmlState.EnumAttrs, "WriteTextBlock cannot be called in the " + this.xstate + " state.");
            Writer.WriteString(text);
        }