1

I have an application which has a feature where user can post message into a channel like for internal communication. I am thinking to implement webhooks where we can get third parties data into channel.it may an alert from server or anything similar. is this possible using ASP.NET webhook custom packages? if yes, any idea from where I can start or for this moment it only support /receive data into the supported parties?

Thanks

pah
  • 4,700
  • 6
  • 28
  • 37
Harshit
  • 397
  • 2
  • 6
  • 17

1 Answers1

2

yes, that's absolutely possible. A big part of ASP.NET WebHooks is that you can enable your own WebHook support (under the Custom namespace). There are several samples showing how to do this and you can also see this blog [1]

Hope this helps!

Henrik

[1] https://blogs.msdn.microsoft.com/webdev/2016/03/05/announcing-asp-net-webhooks-release-candidate-1/

Henrik Frystyk Nielsen
  • 3,092
  • 1
  • 19
  • 17
  • Thanks a lot @henrik, can we create custom our own receivers/senders using asp.net webForms .net 4.5 as the asp.net web-hooks code targets on asp.net mvc 5 and web api2? – Harshit Jul 20 '16 at 17:20
  • Is it possible to `WebHookReceiver` for `.Net Core`? If yes, any sample reference would be just awesome! – Coder Absolute Dec 16 '16 at 08:00
  • .Net Core: https://github.com/aspnet/WebHooks .Net Framework https://github.com/aspnet/aspnetwebhooks – CAD bloke May 11 '18 at 07:23