When you are using the brokered message in the Azure Service Bus, you can retrieve the body of the message with the call .GetBody. The code is simple:
var msg =
If the intent is to only grab the message body regardless of the content you can get it as a stream.
Stream stream = message.GetBody(); StreamReader reader = new StreamReader(stream); string s = reader.ReadToEnd();