Rightek.HttpClient 3.1.1

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

// Install Rightek.HttpClient as a Cake Tool
#tool nuget:?package=Rightek.HttpClient&version=3.1.1

Rightek.HttpClient

Simple wrapper around System.Net.Http.HttpClient

Rightek.HttpClient has no dependency to JSON.net and uses the new built-in JSON api from Microsoft, System.Text.Json. this new JSON api is powerfull and fast, that's why Rightek.HttpClient doesn't provide any way to use another JSON serializer.

Basic Usage

public class WhatTypeOfMusicDoYouLove
{
    public string answer { get; set; }
}
var uri = "https://dl.dropboxusercontent.com/s/pqm5s3kx64q03fc/Rightek.HttpClient.json";
var res = await Client.Instance
    .Init()
    .WithUri(uri)
    .GetAsync<WhatTypeOfMusicDoYouLove>();

if (res.IsSuccessful)
{
    var answer = res.Response.answer;
    // answer should be "Trance Music"
}
else
{
    // why you looking at me? it's not Rightek.HttpClient's fault
}

Nuget nuget stats

PM> Install-Package Rightek.HttpClient

Config API

  • Init: Initial HttpClient, here you can configure the proxy
  • WithUri: Request uri
  • WithBasicAuth: Basic authentication mode
  • WithBearerToken: Bearer token authentication mode
  • WithTimeout: Request timeout
  • WithCookie: Request cookie
  • WithCookies: Request cookies
  • WithHeader: Request header
  • WithHeaders: Request headers
  • BeforeCall: Before request callback
  • AfterCall: After request callback
  • OnError: Error callback
  • Configure: You can use this method instead of all above methods and set all configs at once
  • SetDefault: You should call it once at application startup, default setting can be override using above methods

Core API

  • DownloadAsync: Download file
  • UploadAsync: Upload file
  • UploadAsync<T>: Upload file
  • GetAsync: Get http request
  • GetAsync<T>: Get http request
  • PostFormAsync: Post http request
  • PostXmlAsync: Post http request
  • PostByteArrayAsync: Post http request
  • PostJsonAsync: Post http request
  • PostAsync: Post http request (No data, JSON, XML, Form, Byte Array)
  • PostFormAsync<T>: Post http request
  • PostXmlAsync<T>: Post http request
  • PostByteArrayAsync<T>: Post http request
  • PostJsonAsync<T>: Post http request
  • PostAsync<T>: Post http request (No data, JSON, XML, Form, Byte Array)

License

MIT


Made with ♥ by people @ Rightek

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
3.1.1 701 12/26/2021
3.1.0 688 12/26/2021
3.0.0 6,009 11/24/2021
2.0.0 838 1/19/2021
1.0.0 1,023 2/24/2020