Interface IMessenger
Interface for classes that have an attached message handler.
Namespace: HoloMetrix.Net.Remote
Assembly: HoloMetrix.Net.Remote.dll
Syntax
public interface IMessenger
Properties
| Improve this Doc View SourceMessageHandler
Message handler used to read incoming messages from the remote application.
Declaration
MessageHandler MessageHandler { get; }
Property Value
| Type | Description |
|---|---|
| MessageHandler |
Methods
| Improve this Doc View SourceRegisterMessageHandler(RemoteSession)
Attaches the MessageHandler to a RemoteSession.
Declaration
void RegisterMessageHandler(RemoteSession session)
Parameters
| Type | Name | Description |
|---|---|---|
| RemoteSession | session | The session to register the message handler to. |
UnregisterMessageHandler()
Removes the MessageHandler from a RemoteSession.
Declaration
void UnregisterMessageHandler()