-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
C# 7.1 and .NET Core 2.0 - Modern Cross-Platform Development - Third Edition
By :
Although HTTP was originally designed to request and respond with HTML and other resources for humans to look at, it is also good for building services. Roy Fielding stated in his doctoral dissertation, describing the Representational State Transfer (REST) architectural style, that the HTTP standard defines the following:
GET, POST, PUT, and DELETEWeb services are services that use the HTTP communication standard, so they are sometimes called HTTP or RESTful services.
To allow the easy creation of web services, ASP.NET Core has combined what used to be two types of controller.
In earlier versions of ASP.NET, you would derive web services from ApiController to create a Web API service and then register API routes in the same route table that MVC uses.
With ASP.NET Core, you...