IQlikConnectionSendAsyncT Method (Request, FuncResponse, T) |
Sends a request asyncronously to a Qlik Sense instance with a specified response handler
Namespace: Qlik.Engine.CommunicationAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax Task<T> SendAsync<T>(
Request request,
Func<Response, T> continueWith
)
Function SendAsync(Of T) (
request As Request,
continueWith As Func(Of Response, T)
) As Task(Of T)
Parameters
- request
- Type: Qlik.Engine.Communication.IORequest
Request to send - continueWith
- Type: SystemFuncResponse, T
Response handler that is used to change the Response object into an instance of T
Type Parameters
- T
- Dynamic type that should be returned
Return Value
Type:
TaskTTask that will resolve into a handled instance of T
See Also