| 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 asyncronously.
            
 
Namespace: Qlik.Engine.Communication.IOAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntaxpublic Task<T> ResultAsync<T>(
	string name = "qReturn"
)
Public Function ResultAsync(Of T) ( 
	Optional name As String = "qReturn"
) As Task(Of T)
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 deseriealized.
 
Return Value
Type: 
TaskTA task that resolves the deserialized value.
See Also