InterviewSolution
Saved Bookmarks
| 1. |
What is content negotiation in ASP.Net Web API? |
|
Answer» Content negotiation is BASICALLY a process of selecting the best REPRESENTATION from multiple REPRESENTATIONS that are available for a GIVEN response. It simply allows one to choose rather than negotiate content that one wants to get in response. It is performed at the server-side. In simple words, it chooses the best media type for matters to return a response to an INCOMING request. |
|