
C# 7 and .NET Core: Modern Cross-Platform Development

Although HTTP was originally designed to request and respond with HTML and other resources for us to look at, it is also good to build services. Roy Fielding stated in his doctoral dissertation describing the Representational State Transfer (REST) architectural style that the HTTP standard defines:
GET
and DELETE
To allow the easy creation of services, ASP.NET Core has combined what used to be two types of controller.
In earlier versions of ASP.NET, you would derive 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 use the same Controller
base class as you used with MVC, except the routes are configured on the controller itself, using attributes, rather than in the route table.
Change the font size
Change margin width
Change background colour