HubOpenAppAsync Method (String, String, String, String, Boolean, AsyncHandle) |
Opens an app.
It is not recommended to use this method to open an app. The OpenApp method should be used instead.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax public Task<App> OpenAppAsync(
string docName,
string userName = null,
string password = null,
string serial = null,
bool noData = false,
AsyncHandle asyncHandle = null
)
Public Function OpenAppAsync (
docName As String,
Optional userName As String = Nothing,
Optional password As String = Nothing,
Optional serial As String = Nothing,
Optional noData As Boolean = false,
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of App)
Parameters
- docName
- Type: SystemString
Name of the app to retrieve.
This parameter is mandatory. - userName (Optional)
- Type: SystemString
Name of the user that opens the app.
This parameter is optional. - password (Optional)
- Type: SystemString
Password of the user.
This parameter is optional. - serial (Optional)
- Type: SystemString
Current Qlik Sense serial number.
This parameter is optional. - noData (Optional)
- Type: SystemBoolean
Set this parameter to true to be able to open an app without loading its data.
When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
This parameter is optional and the default value is false. - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Return Value
Type:
TaskAppImplements
IHubOpenAppAsync(String, String, String, String, Boolean, AsyncHandle)See Also