1 type derived from XPathExpression
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CompiledXpathExpr.cs (1)
15internal class CompiledXpathExpr : XPathExpression
20 references to XPathExpression
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (2)
62XPathExpression exp = xn.Compile(xpath); 86XPathExpression exp = xn.Compile(xpath);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CompiledXpathExpr.cs (1)
80public override XPathExpression Clone()
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathExpr.cs (3)
52public abstract XPathExpression Clone(); 60public static XPathExpression Compile(string xpath) 65public static XPathExpression Compile(string xpath, IXmlNamespaceResolver nsResolver)
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (14)
1173public virtual XPathExpression Compile(string xpath) 1175return XPathExpression.Compile(xpath); 1180return SelectSingleNode(XPathExpression.Compile(xpath)); 1185return SelectSingleNode(XPathExpression.Compile(xpath, resolver)); 1188public virtual XPathNavigator SelectSingleNode(XPathExpression expression) 1203return this.Select(XPathExpression.Compile(xpath)); 1210return this.Select(XPathExpression.Compile(xpath, resolver)); 1213public virtual XPathNodeIterator Select(XPathExpression expr) 1227return Evaluate(XPathExpression.Compile(xpath), null); 1232return this.Evaluate(XPathExpression.Compile(xpath, resolver)); 1235public virtual object Evaluate(XPathExpression expr) 1240public virtual object Evaluate(XPathExpression expr, XPathNodeIterator context) 1265public virtual bool Matches(XPathExpression expr) 1886private static XPathExpression CompileMatchPattern(string xpath)