I'm using RabbitMQ with NServiceBus. I send message to some queue where a third party service reads it.
It turned out that service requires encoding_type
property set to utf-8 which I cannot set through NServiceBus (or can I?).
I wonder if there is a possibillity to access IBasicProperties
of RabbitMQ client when I sending message.
Getting a property object in Behavior handlers unfortunately doesn't work.