Skip to content

Instantly share code, notes, and snippets.

@TsuyoshiUshio
Last active January 28, 2018 06:39
Show Gist options
  • Save TsuyoshiUshio/d119e3210ac4e17fb4001943e6536076 to your computer and use it in GitHub Desktop.
Save TsuyoshiUshio/d119e3210ac4e17fb4001943e6536076 to your computer and use it in GitHub Desktop.
Event Grid article
[FunctionName("SomeFunc")]
public static async Task SomeFunc([EventGridTrigger] EventGridEvent eventGridEvent, TraceWriter log)
{
var data = JsonConvert.SerializeObject(eventGridEvent);
log.Info($"The SomeFunc : {data}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment