HubExportAppAsyncT Method (String, String, IEnumerableString, FuncResponse, T, AsyncHandle) |
Exports an app from the Qlik Sense repository to the file system.
This method applies only if running in server mode.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax public Task<T> ExportAppAsync<T>(
string targetPath,
string srcAppId,
IEnumerable<string> ids,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Public Function ExportAppAsync(Of T) (
targetPath As String,
srcAppId As String,
ids As IEnumerable(Of String),
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- targetPath
- Type: SystemString
Path and name of the target app.
This parameter is mandatory. - srcAppId
- Type: SystemString
Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
This parameter is mandatory. - ids
- Type: System.Collections.GenericIEnumerableString
Array of identifiers.
The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTImplements
IHubExportAppAsyncT(String, String, IEnumerableString, FuncResponse, T, AsyncHandle)See Also