3 instantiations of CompiledXpathExpr
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CompiledXpathExpr.cs (1)
82return new CompiledXpathExpr(Query.Clone(_query), _expr, _needContext);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathExpr.cs (1)
69CompiledXpathExpr expr = new CompiledXpathExpr(query, xpath, hasPrefix);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
1890return new CompiledXpathExpr(query, xpath, hasPrefix);
8 references to CompiledXpathExpr
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CompiledXpathExpr.cs (2)
59else if (expr is CompiledXpathExpr) 61evalExpr = ((CompiledXpathExpr)expr).QueryTree;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathExpr.cs (2)
69CompiledXpathExpr expr = new CompiledXpathExpr(query, xpath, hasPrefix); 79((CompiledXpathExpr)this).QueryTree.PrintQuery(w);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (4)
1242CompiledXpathExpr cexpr = expr as CompiledXpathExpr; 1267CompiledXpathExpr cexpr = expr as CompiledXpathExpr;