non è registrato | accedere o registro
Gunnar Peipman's ASP.NET blog
ASP.NET, C#, SharePoint, SQL Server and general software development topics.
Feed & Web Facts
10
Feed Item Count
29 Mag. 12 03:39
Last Reading
1.0
RSS/XML Version
UTF-8
Feed Encoding
Page-Views
 
Weekly People
Week
weblogs.asp.net/gunnarpeipman/default.aspx
Gunnar Peipman's ASP.NET blog
Newest Posts in Feed
ASP.NET Web API: Query string based content formatting
My previous post about Web API content negotiation showed how to add support for new content formats. As our API may have consumers who prefer query for data using GET requests we have to offer something for these dudes too. In this post I will show you how to make life easier for our Web API consumers by using query string mappings. I will use media type mapping and formatter from my previous po...
ASP.NET Web API: Extending content negotiation with new formats
My last post about ASP.NET Web API content negotiation support gave you basic idea about what content negotiation is and how it works out-of-box. In this post I will show you how to extend Web API content negotiation support and make Web API to output contact data in vCard format. In the end of my previous post we asked data in vCard format from Web API and got answer as JSON. No errors, just answ...
ASP.NET Web API: How content negotiation works?
One cool new feature that ASP.NET Web API introduces is support for content negotiation. Content negotiation is mechanism that allows web server to serve content in different format using same URL. In this posting I will show you how to use ASP.NET Web API to serve content in JSON and XML formats. How content negotiation works Content negotiation takes place when browser or some other HTTP-client ...