JsonHttp 0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package JsonHttp --version 0.1.1
NuGet\Install-Package JsonHttp -Version 0.1.1
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="JsonHttp" Version="0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonHttp --version 0.1.1
#r "nuget: JsonHttp, 0.1.1"
#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 JsonHttp as a Cake Addin
#addin nuget:?package=JsonHttp&version=0.1.1

// Install JsonHttp as a Cake Tool
#tool nuget:?package=JsonHttp&version=0.1.1

An easy to use library to convert JSON API endpoint results into classes

For example:

           WordOfTheDay wotd = await JsonHttp.Get<WordOfTheDay>(new Uri("http://urban-word-of-the-day.herokuapp.com/today"));

You can also add some options:
JsonHttp.Options options = new JsonHttp.Options()
           {
               AllowAutoRedirect = true,
               DefaultRequestHeaders = new Dictionary<string, string>(),
               AddMediaTypeWithQualityHeadersJson = true,
               UseLocationHeaderForRedirects = true
           };
           WordOfTheDay wotd = await JsonHttp.Get<WordOfTheDay>(new Uri("http://urban-word-of-the-day.herokuapp.com/today"), options);

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in 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
0.1.2 1,146 4/14/2016
0.1.1 1,195 4/12/2016
0.1.0 1,197 4/12/2016

First release