5 instantiations of XPathCompileException
System.Private.Xml (5)
System\Xml\Xsl\XPath\XPathBuilder.cs (2)
1028throw new XPathCompileException(resId, name, minArgs.ToString(CultureInfo.InvariantCulture), maxArgs.ToString(CultureInfo.InvariantCulture)); 1051throw new XPathCompileException(SR.XPath_NodeSetArgumentExpected, name, (i + 1).ToString(CultureInfo.InvariantCulture));
System\Xml\Xsl\XPath\XPathQilFactory.cs (1)
312throw new XPathCompileException(SR.XPath_NodeSetExpected);
System\Xml\Xsl\XPath\XPathScanner.cs (1)
592return new XPathCompileException(_xpathExpr, _lexStart, _curIndex, resId, args);
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
2334XPathCompileException e = new XPathCompileException(expr, 0, expr.Length, SR.XPath_NodeSetExpected, null);
5 references to XPathCompileException
System.Private.Xml (5)
System\Xml\Xsl\XPath\XPathParser.cs (1)
40catch (XPathCompileException e)
System\Xml\Xsl\XPath\XPathScanner.cs (1)
590public XPathCompileException CreateException(string resId, params string[] args)
System\Xml\Xsl\Xslt\QilGenerator.cs (3)
2277XPathCompileException? ex = e as XPathCompileException; 2334XPathCompileException e = new XPathCompileException(expr, 0, expr.Length, SR.XPath_NodeSetExpected, null);