WebApi Top questions

Post

New Post


Find by name:

WebApi First Name PostDate
Which .NET framework supports Web API? NET 4.0 and above version supports web API.
By default, Web API sends HTTP response with which of the following status code for all uncaught exception? 500 - Internal Server Error
What is Web API Routing? All routes are registered in Route Tables. For example: Routes.MapHttpRoute( Name: "ExampleWebAPIRoute", routeTemplate: “api/{controller}/{id} defaults: new { id = RouteParameter.Optional}