IMessenger Methods
Provides methods to send messages and register message handlers.Name | Description |
---|---|
Register<TMessage>(Object, Object, Boolean, Action<TMessage>) | Registers a handler of a specific message type. |
Send<TMessage>(TMessage, Type, Object) | Sends the specified message. |
Unregister(Object) | Unsubscribes the specified object from receiving any messages. |
Unregister<TMessage>(Object, Object, Action<TMessage>) | Unsubscribes the specified object’s action from being invoked when a specific message occurs. |
See Also