Click or drag to resize

MessageChannel Class

Base class implementation for channel-based messaging.
Inheritance Hierarchy

Namespace:  Openfin.Desktop.Messaging
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
public abstract class MessageChannel

The MessageChannel type exposes the following members.

Properties
  NameDescription
Public propertyChannelName
The name of the channel.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(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.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnClosed
Raises the Closed event.
Protected methodOnOpened
Raises the Opened event.
Public methodRegisterTopic(String, Action)
Registers a method for a given topic.
Public methodRegisterTopicT(String, ActionT)
Registers a method that takes a parameter for a given topic.
Public methodRegisterTopicTResult(String, FuncTResult)
Registers a method that returns a value for a given topic.
Public methodRegisterTopicT, TResult(String, FuncT, TResult)
Registers a method that takes a parameter and returns a value for a given topic.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUnregisterTopic
Removes a previously registered method for the specified topic.
Top
Events
  NameDescription
Public eventClosed
Occurrs when the MessageChannel has closed.
Public eventOpened
Occurs when the MessageChannel has opened.
Top
See Also