Skip to content

Instantly share code, notes, and snippets.

@kasunkv

kasunkv/run.csx Secret

Created June 25, 2017 09:39
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 kasunkv/2839bd445e61f65aff2c8a9f1e123adc to your computer and use it in GitHub Desktop.
Save kasunkv/2839bd445e61f65aff2c8a9f1e123adc to your computer and use it in GitHub Desktop.
Azure Functions: ReceiveNotification Function signature modified to use IAsyncCollector<T> Interface with a custom Type.
public static async Task<object> Run(HttpRequestMessage req, TraceWriter log, IAsyncCollector<Notification> outputItem)
{
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment