IMessenger.Send<TMessage>(TMessage, Type, Object) Method
In This Article
Sends the specified message.
Namespace: DevExpress.Mvvm
Assembly: DevExpress.WinUI.Mvvm.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
message | TMessage | The message that is sent. |
message |
Type | Only recipients of the message |
token | Object | An object (marker) that can be used to identify a specific message. Pass null if you want to send regular messages (without tokens). When you send a message, you can use the current token parameter to assign a token to the message. When the message occurs, only message recipients that registered the same token are invoked. |
#Type Parameters
Name | Description |
---|---|
TMessage | The message type. |
See Also