GetCustomConnectorsAsync Method
Overloads
| GetCustomConnectorsAsync(Boolean) |
List the custom connectors available in the system. |
|
| GetCustomConnectorsAsync(AsyncHandle, Boolean) |
List the custom connectors available in the system. |
|
| GetCustomConnectorsAsync<T>(AsyncHandle, Func<Response, T>, Boolean) |
List the custom connectors available in the system. |
GetCustomConnectorsAsync(Boolean)
List the custom connectors available in the system.
Declaration
Task<IEnumerable<CustomConnector>> GetCustomConnectorsAsync([QixName("qReloadList")] bool reloadList = false)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Boolean | reloadList |
Sets if the list of custom connectors should be reloaded or not.
If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<CustomConnector>> |
GetCustomConnectorsAsync(AsyncHandle, Boolean)
List the custom connectors available in the system.
Declaration
Task<IEnumerable<CustomConnector>> GetCustomConnectorsAsync(AsyncHandle asyncHandle, [QixName("qReloadList")] bool reloadList = false)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Boolean | reloadList |
Sets if the list of custom connectors should be reloaded or not.
If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<CustomConnector>> |
GetCustomConnectorsAsync<T>(AsyncHandle, Func<Response, T>, Boolean)
List the custom connectors available in the system.
Declaration
Task<T> GetCustomConnectorsAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qReloadList")] bool reloadList = false)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Func<Response, T> | onResult |
Continuation function |
| System.Boolean | reloadList |
Sets if the list of custom connectors should be reloaded or not.
If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T |