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

WriteEndAttributeUnchecked() public méthode

XmlRawWriter.WriteEndAttribute().
public WriteEndAttributeUnchecked ( ) : void
Résultat void
        public void WriteEndAttributeUnchecked() {
            Debug.Assert(this.xstate == XmlState.WithinAttr, "WriteEndAttribute cannot be called in the " + this.xstate + " state.");
            Writer.WriteEndAttribute();
            this.xstate = XmlState.EnumAttrs;
            this.depth--;
        }