[]
Initializes an instance of a custom function.
protected AsyncCustomFunction(string name, FunctionValueType result)
Protected Sub New(name As String, result As FunctionValueType)
Type | Name | Description |
---|---|---|
string | name | The name of the custom function. |
FunctionValueType | result | Specifies the return type for the custom function. |
Initializes an instance of a custom function.
protected AsyncCustomFunction(string name, FunctionValueType result, Parameter[] parameters)
Protected Sub New(name As String, result As FunctionValueType, parameters As Parameter())
Type | Name | Description |
---|---|---|
string | name | The name of the custom function. |
FunctionValueType | result | Specifies the return type for the custom function. |
Parameter[] | parameters | Specifies the parmeters for the custom function. |
Initializes an instance of a custom function.
protected AsyncCustomFunction(string name, string description, FunctionValueType result, Parameter[] parameters)
Protected Sub New(name As String, description As String, result As FunctionValueType, parameters As Parameter())
Type | Name | Description |
---|---|---|
string | name | The name of the custom function. |
string | description | The description of the custom function. |
FunctionValueType | result | Specifies the return type for the custom function. |
Parameter[] | parameters | Specifies the parmeters for the custom function. |