Click or drag to resize
Sandcastle Help File BuilderXPathFunctionContextResolveFunction Method
Resolves a function reference and return an IXsltContextFunction representing the function. The IXsltContextFunction is used at execution time to get the return value of the function.

Namespace: SandcastleBuilder.Utils.XPath
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax
public override IXsltContextFunction ResolveFunction(
	string prefix,
	string name,
	XPathResultType[] ArgTypes
)

Parameters

prefix
Type: SystemString
The prefix of the function as it appears in the XPath expression
name
Type: SystemString
The name of the function
ArgTypes
Type: System.Xml.XPathXPathResultType
An array of argument types for the function being resolved. This allows you to select between methods with the same name (for example, overloaded methods).

Return Value

Type: IXsltContextFunction
An IXsltContextFunction representing the function
See Also