From: Gomez on
I use msmq with BinaryMessageFormatter. I usually set the formatter as
follows in the queue level.
UDP_Dll_Que.Formatter = new BinaryMessageFormatter();

Since I want to use the same queue for more than one kind of messages, I
would like to use the formatter only in the message level before sending, as
follows

System.Messaging.Message MsmqMessageObject = new
System.Messaging.Message(MessageObject, new BinaryMessageFormatter());

And in the event callback method, in a similar way.

Would it work?

Regards

Gomez