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

XmlQueryOutput() private méthode

This constructor is internal so that external users cannot construct it (and therefore we do not have to test it separately). Initialize output state to accept Rtf content (top-level sequences are therefore prohibited).
private XmlQueryOutput ( XmlQueryRuntime runtime, XmlEventCache xwrt ) : System
runtime XmlQueryRuntime
xwrt System.Xml.XmlEventCache
Résultat System
        internal XmlQueryOutput(XmlQueryRuntime runtime, XmlEventCache xwrt) {
            this.runtime = runtime;
            this.xwrt = xwrt;
            this.xstate = XmlState.WithinContent;
            this.depth = 1;
            this.rootType = XPathNodeType.Root;
        }

Same methods

XmlQueryOutput::XmlQueryOutput ( XmlQueryRuntime runtime, XmlSequenceWriter seqwrt ) : System