Click or drag to resize
IHubReplaceAppFromIDAsync Method (AsyncHandle, String, String, IEnumerableString)

Replaces an app with the objects from a source app.

The list of objects in the app to be replaced must be defined in qIds.

The data model of the app cannot be updated. This method applies only if running in server mode.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntax
Task<bool> ReplaceAppFromIDAsync(
	AsyncHandle asyncHandle,
	string targetAppId,
	string srcAppID,
	IEnumerable<string> ids
)

Parameters

asyncHandle
Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request
targetAppId
Type: SystemString
Identifier (GUID) of the target app. The target app is the app to be replaced. This parameter is mandatory.
srcAppID
Type: SystemString
Identifier (GUID) of the source app. The objects in the source app will replace the objects in the target app. This parameter is mandatory.
ids
Type: System.Collections.GenericIEnumerableString
QRS identifiers (GUID) of the objects in the target app to be replaced. If an object is private, it should not be included in this list. If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.

Return Value

Type: TaskBoolean
See Also