MS.Internal.Xml.XPath.BooleanExpr.PrintQuery C# (CSharp) Method

PrintQuery() public method

public PrintQuery ( XmlWriter w ) : void
w System.Xml.XmlWriter
return void
        public override void PrintQuery(XmlWriter w) {
            w.WriteStartElement(this.GetType().Name);
            w.WriteAttributeString("op", (isOr ? Operator.Op.OR : Operator.Op.AND).ToString());
            opnd1.PrintQuery(w);
            opnd2.PrintQuery(w);
            w.WriteEndElement();
        }
    }