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

WriteEndAttribute() public method

Before calling XmlRawWriter.WriteEndAttribute(), perform various checks to ensure well-formedness.
public WriteEndAttribute ( ) : void
return void
        public override void WriteEndAttribute() {
            if (this.xstate == XmlState.WithinNmsp) {
                WriteEndNamespace();
            }
            else {
                WriteEndAttributeUnchecked();

                if (this.depth == 0)
                    EndTree();
            }
        }