WebApi Top questions

Post

New Post


Find by name:

WebApi First Name PostDate
How you can return View from ASP.NET Web API method? No, we can't return a view from ASP.NET Web API Method. Web API creates HTTP services that render raw data. However, it's also possible in ASP.NET MVC application.
How to you can limit Access to Web API to Specific HTTP Verb? Attribute programming plays a important role. It is easy to restrict access to an ASP.NET Web API method to be called using a particular HTTP method.
How to handle errors in Web API? Several classes are available in Web API to handle errors. They are HttpError, HttpResponseException, Exception Filters, Registering Exception Filters.