I have a use case where I have to process certain WebAPI request in background. Currently I'm using RabbitMQ for queue service. I see most of the tutorial/sample provides publishing string data (to byte array) to queue.
Is it possible to publish both request QueryString and request body (could be text/binary data)?
It would be good to have suggestion on this in ASP.Net 6 C#.
Note: I'm OK to do little processing on the WebApi layer before publishing to queue.