Info
Version: | 1.2.0 |
Author(s): | Daniel Cazzulino, kzu, Clarius |
Last Update: | Tuesday, June 28, 2011 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://netfx.codeplex.com |
NuGet Url: | https://www.nuget.org/packages/netfx-System.Net.Http.HttpEntityClient |
Install
Install-Package netfx-System.Net.Http.HttpEntityClient
dotnet add package netfx-System.Net.Http.HttpEntityClient
paket add netfx-System.Net.Http.HttpEntityClient
netfx-System.Net.Http.HttpEntityClient Download (Unzip the "nupkg" after downloading)
Dependencies
- HttpClient(0.3.0)
- Newtonsoft.Json(4.0.2)
- netfx-Reflector(1.0.0.7)
- netfx-System.Net.Http.HttpNameValueCollection(1.0.0.23)
Tags
Builds on top of HttpClient and provides the easiest way to interface with typed REST services that are modeled around typed entities or contracts.
Example:
var products = client
.Query<Product>("products")
.OrderBy(x => x.Downloads)
.Skip(25)
.Take(25)
.ToList();.