Click or drag to resize
IAppDoReloadAsyncT Method (AsyncHandle, FuncResponse, T, Int32, Boolean, Boolean)

Reloads the script that is set in an app.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntax
Task<T> DoReloadAsync<T>(
	AsyncHandle asyncHandle,
	Func<Response, T> onResult,
	int mode = 0,
	bool partial = false,
	bool debug = false
)

Parameters

asyncHandle
Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request
onResult
Type: SystemFuncResponse, T
Continuation function
mode (Optional)
Type: SystemInt32
Error handling mode One of: 0: for default mode 1: for ABEND; the reload of the script ends if an error occurs. 2: for ignore; the reload of the script continues even if an error is detected in the script. This parameter is optional.
partial (Optional)
Type: SystemBoolean
Set to true for partial reload. This parameter is optional. The default value is false.
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. The default value is false.

Type Parameters

T

Return Value

Type: TaskT
See Also