System::Xml::Xsl::IXsltContextFunction class

IXsltContextFunction class

Provides an interface to a given function defined in the Extensible Stylesheet Language for Transformations (XSLT) style sheet during runtime execution.

class IXsltContextFunction : public System::Object

Methods

MethodDescription
virtual get_ArgTypes()Returns 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.
virtual get_Maxargs()Returns the maximum number of arguments for the function. This enables the user to differentiate between overloaded functions.
virtual get_Minargs()Returns the minimum number of arguments for the function. This enables the user to differentiate between overloaded functions.
virtual get_ReturnType()Returns the XPathResultType representing the XPath type returned by the function.
virtual Invoke(SharedPtr<XsltContext>, ArrayPtr<SharedPtr<Object>>, SharedPtr<System::Xml::XPath::XPathNavigator>)Provides the method to invoke the function with the given arguments in the given context.

See Also