Click or drag to resize

ApplicationStart Method

Starts running the application on the AppDesktop. It is advised to check if the application is already running by calling isRunning before invoking this method.

Namespace:  Openfin.Desktop
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
public void Start(
	AckCallback callback = null,
	AckCallback errorCallback = null
)

Parameters

callback (Optional)
Type: Openfin.DesktopAckCallback
(Optional) A function that is called if the method succeeds.
errorCallback (Optional)
Type: Openfin.DesktopAckCallback
(Optional) A function that is called if the method fails. The reason for failure is passed as an argument.
See Also