Click or drag to resize

ExternalWindowAckResult Class

Encapsulates and sends the result of an ExternalWindow action to the desktop. The result is sent after invocation of an ExternalWindow method. In cases where this behavior needs to be prevented, such as when work done should be handled by another thread, Set PreventAutomaticSend to true and call send() when the result state is determined. send() will be called automatically by Dispose() if it has not been explicitly called prior.
Inheritance Hierarchy
SystemObject
  Openfin.DesktopExternalWindowAckResult

Namespace:  Openfin.Desktop
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
public sealed class ExternalWindowAckResult : IDisposable

The ExternalWindowAckResult type exposes the following members.

Constructors
  NameDescription
Public methodExternalWindowAckResult Obsolete.
Constructs an instance.
Top
Properties
  NameDescription
Public propertyPreventAutomaticSend
Prevents send() from being called directly after invocation of an ExternalWindow method. If prevented send() must be called explicitly otherwise it will be called on Dispose().
Top
Methods
  NameDescription
Public methodDispose
Will call send() if not done so already.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodsend
Sends the result to the desktop triggering pending callbacks in other apps.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also