Flurl.Http 0.6.0

dotnet add package Flurl.Http --version 0.6.0
NuGet\Install-Package Flurl.Http -Version 0.6.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="Flurl.Http" Version="0.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Flurl.Http --version 0.6.0
#r "nuget: Flurl.Http, 0.6.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 Flurl.Http as a Cake Addin
#addin nuget:?package=Flurl.Http&version=0.6.0

// Install Flurl.Http as a Cake Tool
#tool nuget:?package=Flurl.Http&version=0.6.0

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.

GitHub repositories (48)

Showing the top 5 popular GitHub repositories that depend on Flurl.Http:

Repository Stars
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
Ponderfly/GoogleTranslateIpCheck
Megabit/Blazorise
Blazorise is a component library built on top of Blazor with support for CSS frameworks like Bootstrap, Tailwind, Bulma, AntDesign, and Material.
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
Richasy/Bili.Copilot
哔哩哔哩用户的个人助理
Version Downloads Last updated
0.6.0 9,803 3/28/2015
0.5.3 249 3/19/2015
0.5.2 121 3/17/2015
0.5.1 127 3/16/2015
0.5.0 665 2/4/2015
0.4.2 171 2/2/2015
0.4.1 314 1/17/2015
0.4.0 335 12/16/2014
0.4.0-pre2 214 12/15/2014
0.4.0-pre 86 12/14/2014
0.3.0-pre 81 12/10/2014
0.2.5 221 12/8/2014
0.2.4 2,354 8/29/2014
0.2.3 369 7/24/2014
0.2.2 186 7/8/2014
0.2.1 161 6/19/2014
0.2.0 121 6/11/2014
0.2.0-pre 93 6/5/2014
0.1.3 92 5/31/2014
0.1.2 104 5/12/2014
0.1.1 101 5/5/2014
0.1.0 93 5/4/2014

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).