IXsltContextFunction Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides an interface to a given function defined in the Extensible Stylesheet Language for Transformations (XSLT) style sheet during runtime execution.
public interface class IXsltContextFunction
public interface IXsltContextFunction
type IXsltContextFunction = interface
Public Interface IXsltContextFunction
Properties
ArgTypes |
Gets the supplied XML Path Language (XPath) types for the function's argument list. This information can be used to discover the signature of the function which allows you to differentiate between overloaded functions. |
Maxargs |
Gets the maximum number of arguments for the function. This enables the user to differentiate between overloaded functions. |
Minargs |
Gets the minimum number of arguments for the function. This enables the user to differentiate between overloaded functions. |
ReturnType |
Gets the XPathResultType representing the XPath type returned by the function. |
Methods
Invoke(XsltContext, Object[], XPathNavigator) |
Provides the method to invoke the function with the given arguments in the given context. |