Azure service bus - how to add metadata to the message
问题 I am using .net core web app as the publisher and .net core console app as subscriber. I am able to successfully pass messages between these two systems using Managed Identities - set up in Azure portal. My question is I need to add metadata to the the message that is being sent. How do I do that ? Below is my publisher code : string data = JsonConvert.SerializeObject(payloadEvents); Message message = new Message(Encoding.UTF8.GetBytes(data)); var tokenProvider = TokenProvider