August 2017
Intermediate to advanced
330 pages
7h 26m
English
Get is used to retrieve data. In most cases, Get is not explicitly stated:
[Route("")]
[HttpGet]
public IHttpActionResult GetShoes()
This can be declared as follows:
[Route("")]
public IHttpActionResult Get()
Note the omission of the action.