I’m trying to find a way to pass objects to the Azure Queue. I couldn’t find a way to do this.
As I’ve seen I can pass string or byte array, which is not very comfortable for passing objects.
Is there anyway to pass custom objects to the Queue?
Thanks!
You can use the following classes as example:
Then a StdQueue (a Queue that is strongly typed):
Then, all you have to do is to inherit the BaseMessage:
And make a queue that works with that message:
Hope this helps!