Skip to content

Instantly share code, notes, and snippets.

@hardvin
Created April 27, 2016 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hardvin/d6614b3d9273596bc2063e8ff2f8a73c to your computer and use it in GitHub Desktop.
Save hardvin/d6614b3d9273596bc2063e8ff2f8a73c to your computer and use it in GitHub Desktop.
else if (entityLogicalNameValue.ToString() == "contact")
{
Console.WriteLine("--------------------------------");
Console.WriteLine(string.Format("Message received: Id = {0}", message.MessageId));
// Display message properties that are set on the brokered message.
Utility.PrintMessageProperties(message.Properties);
// Display body details.
Utility.Print(message.GetBody<RemoteExecutionContext>());
Console.WriteLine("--------------------------------");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment