[]
Initializes an instance of a parameter.
public Parameter(FunctionValueType valueType)
| Type | Name | Description |
|---|---|---|
| FunctionValueType | valueType | The value type of the parameter. |
Initializes an instance of a parameter.
public Parameter(FunctionValueType valueType, bool acceptReference)
| Type | Name | Description |
|---|---|---|
| FunctionValueType | valueType | The value type of the parameter. |
| bool | acceptReference | If this parameter can accept reference. |
Initializes an instance of a parameter.
public Parameter(FunctionValueType valueType, bool acceptReference, bool acceptCustomObjects)
| Type | Name | Description |
|---|---|---|
| FunctionValueType | valueType | The value type of the parameter. |
| bool | acceptReference | If this parameter can accept reference. |
| bool | acceptCustomObjects | Accepts custom objects if value type is Object. |
Initializes an instance of a parameter.
public Parameter(FunctionValueType valueType, object defaultValue)
| Type | Name | Description |
|---|---|---|
| FunctionValueType | valueType | The value type of the parameter. |
| object | defaultValue | The default value of the parameter. |
Initializes an instance of a parameter.
public Parameter(FunctionValueType valueType, object defaultValue, bool acceptReference)
| Type | Name | Description |
|---|---|---|
| FunctionValueType | valueType | The value type of the parameter. |
| object | defaultValue | The default value of the parameter. |
| bool | acceptReference | If this parameter can accept reference. |
Initializes an instance of a parameter.
public Parameter(string name, string description, FunctionValueType valueType, object defaultValue)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the parameter. |
| string | description | The description of the parameter. |
| FunctionValueType | valueType | The value type of the parameter. |
| object | defaultValue | The default value of the parameter. |
Initializes an instance of a parameter.
public Parameter(string name, string description, FunctionValueType valueType, object defaultValue, bool acceptReference)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the function. |
| string | description | The description of the parameter. |
| FunctionValueType | valueType | The value type of the parameter. |
| object | defaultValue | The default value of the parameter. |
| bool | acceptReference | If this parameter can accept reference. |
Initializes an instance of a parameter.
public Parameter(string name, string description, FunctionValueType valueType, object defaultValue, bool acceptReference, bool acceptCustomObjects)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the function. |
| string | description | The description of the parameter. |
| FunctionValueType | valueType | The value type of the parameter. |
| object | defaultValue | The default value of the parameter. |
| bool | acceptReference | If this parameter can accept reference. |
| bool | acceptCustomObjects | Accepts custom objects if value type is Object. |