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

EndTree() public method

Call XmlSequenceWriter.EndTree().
public EndTree ( ) : void
return void
        public void EndTree() {
            Debug.Assert(this.xstate == XmlState.EnumAttrs || this.xstate == XmlState.WithinContent, "EndTree cannot be called in the " + this.xstate + " state.");
            this.seqwrt.EndTree();
            this.xstate = XmlState.WithinSequence;
            Writer = null;
        }