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

WriteEndAttributeUnchecked() public method

XmlRawWriter.WriteEndAttribute().
public WriteEndAttributeUnchecked ( ) : void
return 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--;
        }