Web API versioning using custom media types HD
Text version of the video http://csharp-video-tutorials.blogspot.com/2017/03/web-api-versioning-using-custom-media.html Slides http://csharp-video-tutorials.blogspot.com/2017/03/web-api-versioning-using-custom-media_8.html All ASP .NET Web API Text Articles and Slides http://csharp-video-tutorials.blogspot.com/2016/09/aspnet-web-api-tutorial-for-beginners.html All ASP .NET Web API Videos https://www.youtube.com/playlist?list=PL6n9fhu94yhW7yoUOGNOfHurUE6bpOO2b All Dot Net and SQL Server Tutorials in English https://www.youtube.com/user/kudvenkat/playlists?view=1&sort=dd All Dot Net and SQL Server Tutorials in Arabic https://www.youtube.com/c/KudvenkatArabic/playlists In this video we will discuss versioning a Web API Service using vendor specific media types. Instead of using the standard media types like application/xml or application/json, we want to use our custom media types. In the media type, we also have the version of the service we want. Custom media types have vnd prefix. vnd indicates that it is a vendor specific media type. So from our CustomControllerSelector class we want to read the version number from the custom media type we have specified. For the code used in the demo please refer to the following article http://csharp-video-tutorials.blogspot.com/2017/03/web-api-versioning-using-custom-media.html