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.HttpEntityConventionClient |
Install
Install-Package netfx-System.Net.Http.HttpEntityConventionClient
dotnet add package netfx-System.Net.Http.HttpEntityConventionClient
paket add netfx-System.Net.Http.HttpEntityConventionClient
netfx-System.Net.Http.HttpEntityConventionClient Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Builds on top of HttpEntityClient and HttpClient and provides the easiest way to interface with typed REST services that are modeled around typed entities or contracts.
Example:
var products = client
// Note: resource path inferred from Product type
.Query<Product>()
.OrderBy(x => x.Downloads)
.Skip(25)
.Take(25)
.ToList();.