Click or drag to resize
ResponseResultAsyncT Method
Gets custom result from a json response. Wrapper for ValueT(String) that assumes the property to deserialize is found in the result part of the response asynchronously.

Namespace: Qlik.Engine.Communication.IO
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntax
public Task<T> ResultAsync<T>(
	string name = "qReturn"
)

Parameters

name (Optional)
Type: SystemString
The property of the result entry in the json response to deserialized

Type Parameters

T
The type to which the json response should be deserialized.

Return Value

Type: TaskT
A task that resolves the deserialized value.
See Also