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

StartElementContentUnchecked() public méthode

Call XmlRawWriter.StartElementContent().
public StartElementContentUnchecked ( ) : void
Résultat void
        public void StartElementContentUnchecked() {
            Debug.Assert(this.xstate == XmlState.EnumAttrs, "StartElementContent cannot be called in the " + this.xstate + " state.");

            // Output any cached namespaces
            if (this.cntNmsp != 0)
                WriteCachedNamespaces();

            Writer.StartElementContent();
            this.xstate = XmlState.WithinContent;
            this.useDefNmsp = false;
        }