| VariableSetContentAsyncT Method (String, Boolean, FuncResponse, T, AsyncHandle) | 
Sets a value to a variable.
 
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntaxpublic Task<T> SetContentAsync<T>(
	string content,
	bool updateMRU,
	Func<Response, T> onResult,
	AsyncHandle asyncHandle = null
)
Public Function SetContentAsync(Of T) ( 
	content As String,
	updateMRU As Boolean,
	onResult As Func(Of Response, T),
	Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- content
 - Type: SystemString
Value of the variable.
                                        This parameter is mandatory. - updateMRU
 - Type: SystemBoolean
If set to true, the value is added to the Most Recently Used (MRU) list.
                                        This parameter is mandatory. - onResult
 - Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
 - Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request 
Type Parameters
- T
 
Return Value
Type: 
TaskTImplements
IVariableSetContentAsyncT(String, Boolean, FuncResponse, T, AsyncHandle)
See Also