GetFunctionsAsync Method
Overloads
| GetFunctionsAsync(FunctionGroup) |
Gets the list of all the script functions. |
|
| GetFunctionsAsync(AsyncHandle, FunctionGroup) |
Gets the list of all the script functions. |
|
| GetFunctionsAsync<T>(AsyncHandle, Func<Response, T>, FunctionGroup) |
Gets the list of all the script functions. |
GetFunctionsAsync(FunctionGroup)
Gets the list of all the script functions.
Declaration
public Task<IEnumerable<Function>> GetFunctionsAsync([QixName("qGroup")] FunctionGroup group = FunctionGroup.FUNC_GROUP_ALL)
Parameters
| Type | Name | Description |
|---|---|---|
| FunctionGroup | group |
Name of the group. Default is all groups. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Function>> |
Implements
GetFunctionsAsync(AsyncHandle, FunctionGroup)
Gets the list of all the script functions.
Declaration
public Task<IEnumerable<Function>> GetFunctionsAsync(AsyncHandle asyncHandle, [QixName("qGroup")] FunctionGroup group = FunctionGroup.FUNC_GROUP_ALL)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| FunctionGroup | group |
Name of the group. Default is all groups. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Function>> |
Implements
GetFunctionsAsync<T>(AsyncHandle, Func<Response, T>, FunctionGroup)
Gets the list of all the script functions.
Declaration
public Task<T> GetFunctionsAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qGroup")] FunctionGroup group = FunctionGroup.FUNC_GROUP_ALL)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Func<Response, T> | onResult |
Continuation function |
| FunctionGroup | group |
Name of the group. Default is all groups. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T |