IXsltContextFunction.Invoke(XsltContext, Object[], XPathNavigator) Method
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 the method to invoke the function with the given arguments in the given context.
public:
System::Object ^ Invoke(System::Xml::Xsl::XsltContext ^ xsltContext, cli::array <System::Object ^> ^ args, System::Xml::XPath::XPathNavigator ^ docContext);
public object Invoke (System.Xml.Xsl.XsltContext xsltContext, object[] args, System.Xml.XPath.XPathNavigator docContext);
abstract member Invoke : System.Xml.Xsl.XsltContext * obj[] * System.Xml.XPath.XPathNavigator -> obj
Public Function Invoke (xsltContext As XsltContext, args As Object(), docContext As XPathNavigator) As Object
Parameters
- xsltContext
- XsltContext
The XSLT context for the function call.
- args
- Object[]
The arguments of the function call. Each argument is an element in the array.
- docContext
- XPathNavigator
The context node for the function call.
Returns
An Object representing the return value of the function.
Remarks
The docContext
parameter is required so that functions which require a node set can be supplied the current context node.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET