Skip to content

Instantly share code, notes, and snippets.

@sunnyy02
Created May 1, 2018 01:51
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 sunnyy02/8a3ea7dd4172cf6dd6198ff27448eeec to your computer and use it in GitHub Desktop.
Save sunnyy02/8a3ea7dd4172cf6dd6198ff27448eeec to your computer and use it in GitHub Desktop.
Webhook handler
public class WebHookHandler : Microsoft.AspNet.WebHooks.WebHookHandler
{
public override Task ExecuteAsync(string receiver, WebHookHandlerContext context)
{
return Task.FromResult(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment