Skip to main content
A newer version of this page is available. .

IMessenger Members

Contains methods that send messages and register message handlers. This interface is implemented in the Messenger class.

Methods

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