System.Xml.Xsl.Runtime.XmlQueryOutput.WriteRawUnchecked C# (CSharp) Méthode

WriteRawUnchecked() public méthode

Write a text block without escaping special characters.
public WriteRawUnchecked ( string text ) : void
text string
Résultat void
        public void WriteRawUnchecked(string text) {
            Debug.Assert(this.xstate != XmlState.WithinSequence && this.xstate != XmlState.EnumAttrs, "WriteTextBlockNoEntities cannot be called in the " + this.xstate + " state.");
            Writer.WriteRaw(text);
        }