mscorlib(4.0.0.0) API with additions
IXsltContextFunction.cs
1 using System.Xml.XPath;
2 
3 namespace System.Xml.Xsl
4 {
6  public interface IXsltContextFunction
7  {
10  int Minargs
11  {
12  get;
13  }
14 
17  int Maxargs
18  {
19  get;
20  }
21 
25  {
26  get;
27  }
28 
32  {
33  get;
34  }
35 
41  object Invoke(XsltContext xsltContext, object[] args, XPathNavigator docContext);
42  }
43 }
Definition: __Canon.cs:3
XPathResultType [] ArgTypes
Gets the supplied XML Path Language (XPath) types for the function's argument list....
Encapsulates the current execution context of the Extensible Stylesheet Language for Transformations ...
Definition: XsltContext.cs:6
Provides an interface to a given function defined in the Extensible Stylesheet Language for Transform...
XPathResultType
Specifies the return type of the XPath expression.
Provides a cursor model for navigating and editing XML data.
object Invoke(XsltContext xsltContext, object[] args, XPathNavigator docContext)
Provides the method to invoke the function with the given arguments in the given context.
XPathResultType ReturnType
Gets the T:System.Xml.XPath.XPathResultType representing the XPath type returned by the function.
int Minargs
Gets the minimum number of arguments for the function. This enables the user to differentiate between...
int Maxargs
Gets the maximum number of arguments for the function. This enables the user to differentiate between...