Created
May 1, 2018 01:51
-
-
Save sunnyy02/8a3ea7dd4172cf6dd6198ff27448eeec to your computer and use it in GitHub Desktop.
Webhook handler
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
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