What is the purpose with the property BrokeredMessage.To and how shall it be used?
Normally when creating a MessageSender you have to provide the destination (the address) where
the sender will put the messages sent. But, can that be overriden by setting the To property on
the BrokeredMessage?
My usecase is that I really want to create a generic MessageSender which is not allocated to a certian
destination. I like to provide the destination when sending the message.
(Compare MessageProducer() in JMS).