Answers for "webapi global"

0

webapi global

public class WebAPIApplication : System.Web.HttpApplication
{
    protected void Application_Start()
    {
        GlobalConfiguration.Configure(WebApiConfig.Register);
        
        //other configuration
    }
}
Posted by: Guest on July-01-2021

Browse Popular Code Answers by Language