QlikConnectionSendAsyncT 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 public Task<T> SendAsync<T>(
Request request,
Func<Response, T> continueWith = null
)
Public Function SendAsync(Of T) (
request As Request,
Optional continueWith As Func(Of Response, T) = Nothing
) As Task(Of T)
Parameters
- request
- Type: Qlik.Engine.Communication.IORequest
Request to send - continueWith (Optional)
- 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
Implements
IQlikConnectionSendAsyncT(Request, FuncResponse, T)See Also