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

WriteNamespaceString() public méthode

Cache the namespace's text.
public WriteNamespaceString ( string text ) : void
text string
Résultat void
        public void WriteNamespaceString(string text) {
            Debug.Assert(this.xstate == XmlState.WithinNmsp, "WriteNamespaceString cannot be called in the " + this.xstate + " state.");

            if (this.nmspText.Length == 0)
                this.nmspText = text;
            else
                this.nmspText += text;
        }