| IAppDoReloadAsyncT Method (Int32, Boolean, Boolean, FuncResponse, T, AsyncHandle) | 
Reloads the script that is set in an app.
 
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
SyntaxTask<T> DoReloadAsync<T>(
	int mode = 0,
	bool partial = false,
	bool debug = false,
	Func<Response, T> onResult,
	AsyncHandle asyncHandle = null
)
Function DoReloadAsync(Of T) ( 
	Optional mode As Integer = 0,
	Optional partial As Boolean = false,
	Optional debug As Boolean = false,
	onResult As Func(Of Response, T),
	Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- mode (Optional)
 - Type: SystemInt32
Error handling mode
                                        One of:
                                        
                                            0 for default mode
                                            1 for attempt recovery on all errors
                                            2 for fail on all errors
                                        
                                        This parameter is optional. - partial (Optional)
 - Type: SystemBoolean
Set to true for partial reload.
                                        This parameter is optional. - debug (Optional)
 - Type: SystemBoolean
Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                                        This parameter is optional. - onResult
 - Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
 - Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request 
Type Parameters
- T
 
Return Value
Type: 
TaskT
See Also