1 type derived from XPathExpression
System.Private.Xml (1)
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
14internal class CompiledXpathExpr : XPathExpression
27 references to XPathExpression
Microsoft.Build.Tasks.Core (2)
XmlPeek.cs (1)
98XPathExpression expr;
XmlPoke.cs (1)
82XPathExpression expr;
netstandard (1)
netstandard.cs (1)
2519[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.XPathExpression))]
System.Private.Xml (20)
System\Xml\Dom\XmlNode.cs (2)
73XPathExpression exp = xn.Compile(xpath); 99XPathExpression exp = xn.Compile(xpath);
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
84public override XPathExpression Clone()
System\Xml\XPath\XPathExpr.cs (3)
49public abstract XPathExpression Clone(); 57public static XPathExpression Compile(string xpath) 62public static XPathExpression Compile(string xpath, IXmlNamespaceResolver? nsResolver)
System\Xml\XPath\XPathNavigator.cs (13)
1114public virtual XPathExpression Compile(string xpath) 1116return XPathExpression.Compile(xpath); 1121return SelectSingleNode(XPathExpression.Compile(xpath)); 1126return SelectSingleNode(XPathExpression.Compile(xpath, resolver)); 1129public virtual XPathNavigator? SelectSingleNode(XPathExpression expression) 1142return this.Select(XPathExpression.Compile(xpath)); 1147return this.Select(XPathExpression.Compile(xpath, resolver)); 1150public virtual XPathNodeIterator Select(XPathExpression expr) 1162return Evaluate(XPathExpression.Compile(xpath), null); 1167return this.Evaluate(XPathExpression.Compile(xpath, resolver)); 1170public virtual object Evaluate(XPathExpression expr) 1175public virtual object Evaluate(XPathExpression expr, XPathNodeIterator? context) 1198public virtual bool Matches(XPathExpression expr)
System\Xml\Xsl\XsltOld\Compiler.cs (1)
1171public override XPathExpression Clone() { return this; }
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
167XPathExpression xpathExpr = navigator.Compile("boolean(" + _xpathexpr + ")");
System.Xml (1)
System.Xml.cs (1)
181[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.XPathExpression))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net10.0\System.Xml.ReaderWriter.Forwards.cs (1)
172[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.XPathExpression))]
System.Xml.XPath (1)
artifacts\obj\System.Xml.XPath\Debug\net10.0\System.Xml.XPath.Forwards.cs (1)
10[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.XPathExpression))]