| XPathFunctionContextResolveFunction Method |
Namespace: SandcastleBuilder.Utils.XPathAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public override IXsltContextFunction ResolveFunction(
string prefix,
string name,
XPathResultType[] ArgTypes
)
Public Overrides Function ResolveFunction (
prefix As String,
name As String,
ArgTypes As XPathResultType()
) As IXsltContextFunction
public:
virtual IXsltContextFunction^ ResolveFunction(
String^ prefix,
String^ name,
array<XPathResultType>^ ArgTypes
) override
abstract ResolveFunction :
prefix : string *
name : string *
ArgTypes : XPathResultType[] -> IXsltContextFunction
override ResolveFunction :
prefix : string *
name : string *
ArgTypes : XPathResultType[] -> IXsltContextFunction
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:
IXsltContextFunctionAn
IXsltContextFunction representing the
function
See Also