December 2021
Intermediate to advanced
204 pages
3h 5m
English
In this chapter, we are going to learn about how to send your data to the client in different formats and types. By default, the ASP.NET Core web API sends data as JSON, but there are some more ways to distribute data.
We'll cover the following sections in this chapter:
The topics in this chapter relate to the WebAPI layer of the ASP.NET Core architecture:
Figure 12.1 – The ASP.NET Core architecture
To follow the examples in this chapter, you will need to create an ASP.NET Core ...