3 implementations of ResolveFunction
System.Data.SqlXml (3)
System\Xml\Xsl\XPath\XPathBuilder.cs (1)
46QilNode IXPathEnvironment.ResolveFunction(string prefix, string name, IList<QilNode> args, IFocus env) {
System\Xml\Xsl\Xslt\QilGeneratorEnv.cs (1)
93QilNode IXPathEnvironment.ResolveFunction(string prefix, string name, IList<QilNode> args, IFocus env) {
System\Xml\Xsl\Xslt\XPathPatternBuilder.cs (1)
365public QilNode ResolveFunction(string prefix, string name, IList<QilNode> args, IFocus env) {
3 references to ResolveFunction
System.Data.SqlXml (3)
System\Xml\Xsl\XPath\XPathBuilder.cs (1)
526return this.environment.ResolveFunction(prefix, name, args, (IFocus)this);
System\Xml\Xsl\Xslt\XPathPatternBuilder.cs (2)
278matches = environment.ResolveFunction(prefix, name, args, new XsltFunctionFocus(i)); 366return baseEnvironment.ResolveFunction(prefix, name, args, env);