AspNetWebHooks/samples/CustomReceiver/Global.asax.cs

13 строки
261 B
C#

using System.Web.Http;
namespace CustomReceiver
{
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
GlobalConfiguration.Configure(WebApiConfig.Register);
}
}
}