HLI.Data 1.0.4.2

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

// Install HLI.Data as a Cake Tool
#tool nuget:?package=HLI.Data&version=1.0.4.2

Create instance of HliHttpClient and make typed calls:

var client = new HliHttpClient("http://httpbin.org/", "ip");

var result = await client.GetDataAsTypeAsync<IpResponse>();

There is also an IRepository interface and subinterfaces for your repositories.

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.0.5.1 1,136 3/31/2017
1.0.5 992 10/30/2016
1.0.4.3 1,047 8/10/2016
1.0.4.2 959 8/7/2016
1.0.3 962 6/5/2016
1.0.2 979 5/3/2016
1.0.1 1,842 2/28/2016
1.0.0 1,452 2/27/2016

- Newtonsoft.Json is now set to Copy local = False to prevent conflicts.
Ensure the above package is installed and referenced in the platform project.

- Constructors for HliHttpClient are now completely revised to prevent ambigus constructor issues. Usage might need to be updated.

- Added support for different type request / response in PostDataAsTypeAsync