HubGetCustomConnectorsAsyncT Method (Boolean, FuncResponse, T, AsyncHandle) |
List the custom connectors available in the system.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax public Task<T> GetCustomConnectorsAsync<T>(
bool reloadList = false,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Public Function GetCustomConnectorsAsync(Of T) (
Optional reloadList As Boolean = false,
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- reloadList (Optional)
- Type: SystemBoolean
Sets if the list of custom connectors should be reloaded or not.
This parameter is optional and the default value is false.
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 GetCustomConnectors method was made, the new connectors are not returned.
If set to true, the GetCustomConnectors method looks for new connectors in the file system. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTImplements
IHubGetCustomConnectorsAsyncT(Boolean, FuncResponse, T, AsyncHandle)See Also