Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #r "Microsoft.ServiceBus"
  2.  
  3. using System;
  4. using System.Text;
  5. using Microsoft.ServiceBus.Messaging;
  6.  
  7. public static void Run(EventData myEventHubMessage, TraceWriter log)
  8. {
  9. log.Info($"C# Event Hub trigger function processed a message with partition key: {myEventHubMessage.PartitionKey}");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement