I see in the MVVM-Light package that I can send messages with tokens- what I need to do is send an object, with a message attached to that object- like Add, Edit, Delete whatever.
What is the best way to send and to recieve this message? I think for send its just: Messenger.Default.Send(myObject, ActionEnum.DELETE);
But in the receive: Messenger.Default.Register(this, ????, HandleMyMessage);
What is the correct syntax?
Thanks!