Flurl.Http 0.6.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Flurl.Http --version 0.6.3
                    
NuGet\Install-Package Flurl.Http -Version 0.6.3
                    
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="Flurl.Http" Version="0.6.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flurl.Http" Version="0.6.3" />
                    
Directory.Packages.props
<PackageReference Include="Flurl.Http" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Flurl.Http --version 0.6.3
                    
#r "nuget: Flurl.Http, 0.6.3"
                    
#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.
#:package Flurl.Http@0.6.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Flurl.Http&version=0.6.3
                    
Install as a Cake Addin
#tool nuget:?package=Flurl.Http&version=0.6.3
                    
Install as a Cake Tool

A fluent, portable, testable HTTP client library that extends Flurl's URL builder chain.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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.7.0 4,400 9/20/2015
0.6.4 1,879 8/18/2015
0.6.3 3,343 7/19/2015
0.6.2 2,144 6/25/2015
0.6.1 1,709 6/11/2015
0.6.0 18,756 3/28/2015
0.5.3 280 3/19/2015
0.5.2 140 3/17/2015
0.5.1 143 3/16/2015
0.5.0 755 2/4/2015
0.4.2 191 2/2/2015
0.4.1 334 1/17/2015
0.4.0 364 12/16/2014
0.4.0-pre2 209 12/15/2014
0.4.0-pre 94 12/14/2014
0.3.0-pre 92 12/10/2014
0.2.5 267 12/8/2014
0.2.4 3,496 8/29/2014
0.2.3 412 7/24/2014
0.2.2 201 7/8/2014
0.2.1 206 6/19/2014
0.2.0 176 6/11/2014
0.2.0-pre 107 6/5/2014
0.1.3 130 5/31/2014
0.1.2 164 5/12/2014
0.1.1 161 5/5/2014
0.1.0 122 5/4/2014

0.6.3 - Updated Flurl dependency to 1.0.9.
0.6.2 - Respect Json.NET's JsonConvert.DefaultSettings
0.6.1 - Fixed possibly dictionary lookup bug (github #34).
0.6.0 - Added support for cancellation tokens, PATCH, string request bodies.
0.5.3 - Updated Flurl dependency to 1.0.7.
0.5.2 - Allowed HTTP status at the individual client/call level, i.e. url.AllowHttpStatus("3xx"), url.AllowAnyHttpStatus()
0.5.1 - Configure which HTTP statuses won't throw exceptions, i.e. FlurlHttp.Configure(c => c.AllowedHttpStatusRange = "100-299,4xx");
0.5.0 - Added deserialization helpers for error responses (FlurlHttpException.FlurlHttpException.GetResponseJson, etc).
0.4.2 - Updated Flurl dependency to 1.0.6.
0.4.1 - GitHub #25 - some exceptions not triggering global OnError.
0.4.0 - Client lifetime management - see http://bit.ly/1zqmuLA.
0.3.0 - Added support for sending cookies (WithCookie/WithCookies), including breaking change to IHttpClientFactory.
0.2.5 - Added hook to create HttpClientHandler from custom factory, updated Flurl dependency.
0.2.4 - Updated Flurl dependency for PCL to 1.0.2.
0.2.3 - New properties added to HttpCall: Url, Completed, Succeeded, HttpStatus.
0.2.2 - Updated Flurl dependency for PCL to 1.0.1.
0.2.1 - Added support for getting streams and byte arrays.
0.2.0 - Added .NET 4.5 specific version with fewer dependencies.
0.1.3 - Added support for HEAD requests via HeadAsync (thanks to @benb1n).