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