MS.Internal.Xml.XPath.BooleanExpr.PrintQuery C# (CSharp) Méthode

PrintQuery() public méthode

public PrintQuery ( XmlWriter w ) : void
w System.Xml.XmlWriter
Résultat 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();
        }
    }