Created
May 21, 2017 08:31
-
-
Save scott-kloud/d72bbb0c180338c1f04ed901f0cccf85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r "Microsoft.ServiceBus" | |
using Microsoft.ServiceBus.Messaging; | |
using System; | |
using System.Threading.Tasks; | |
public static void Run(BrokeredMessage mySbMsg, TraceWriter log) | |
{ | |
log.Info($"C# ServiceBus topic trigger function processed message id: {mySbMsg.MessageId}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment