WebApiRestService.WebApiClient 1.1.0

dotnet add package WebApiRestService.WebApiClient --version 1.1.0
NuGet\Install-Package WebApiRestService.WebApiClient -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WebApiRestService.WebApiClient" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebApiRestService.WebApiClient --version 1.1.0
#r "nuget: WebApiRestService.WebApiClient, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WebApiRestService.WebApiClient as a Cake Addin
#addin nuget:?package=WebApiRestService.WebApiClient&version=1.1.0

// Install WebApiRestService.WebApiClient as a Cake Tool
#tool nuget:?package=WebApiRestService.WebApiClient&version=1.1.0

WebApiClient is a simple and powerful .NET Portable Library built to work as a middle layer between your application and a RESTFul service, like the Microsoft WebApi.

 It provides methods to make asynchronous, typed WebApi requests using the HttpClient class.

 It takes care of all the logic to create the request, wait for the response, handle exceptions and convert the response into an object, leaving you free of writing repetitive code.

 Supported Platforms:
 - .NET Framework 4.5
 - Windows 8 Apps
 - Windows Phone Silverlight 8
 - Windows Phone 8.1

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 19,780 7/20/2014
1.0.0 1,692 5/21/2014

Compatibility:
 - Now it is compatible with Windows Phone 8.1 apps
 Breaking changes:
 - The GetManyAsync now returns an ICollection<T> instead of a List<T>
 Fixes:
 - All internal async calls are calling ConfigureAwait(false)