Click or drag to resize

DesktopSystemaddEventListener Method

Note: This API is now obsolete.

Registers an event listener on the specified event.

Namespace:  Openfin.Desktop
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
[ObsoleteAttribute("This method is obsolete. Use DesktopSystem events instead.")]
public void addEventListener(
	string type,
	AckCallback listener,
	AckCallback callback = null,
	AckCallback errorCallback = null
)

Parameters

type
Type: SystemString
The type of the event.
listener
Type: Openfin.DesktopAckCallback
A function that is called whenever an event of the specified type occurs. It is passed an event object containing information related to the event.
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