Bat.Http 8.0.2

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

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

For use Bat.Http just do it :

1- Install Bat.Http on your project

2- Use it in bussiness logic for example :

public class BaseService : IBaseService
{
    private readonly HttpClient _httpClient;

    public BaseService(IHttpClientFactory httpClientFactory)
    {
        _httpClient = httpClientFactory.CreateClient();
    }

    public void UseBatHttpSample()
    {
        var newObject = new
        {
            Id = 1,
            FirstName = "Mehran",
            LastName = "Norouzi"
        };
    
        var requestHeader = new Dictionary<string, string>
        {
            {"Authorization", "Bearer fjfksjfk-sdklsdjfsddsjkljsdklfj_sakd" }
        };

        string IP = ClientInfo.GetIP(HttpContext);
        RequestDetails requestDetails = ClientInfo.GetRequestDetails(HttpContext);

        var result1 = await HttpRequestTools.GetAsync(httpClient: _httpClient, url: "https://someSite.com");
        var result2 = await HttpRequestTools.PostAsync(httpClient: _httpClient, url: "https://someSite.com", 
                    contentJsonString: newObject.SerializeToJson(), header: requestHeader);
        var result3 = await HttpRequestTools.PutAsync(httpClient: _httpClient, url: "https://someSite.com", 
                    contentJsonString: newObject.SerializeToJson(), header: requestHeader);
        var result4 = await HttpRequestTools.DeleteAsync(httpClient: _httpClient, url: "https://someSite.com", 
                    contentJsonString: newObject.SerializeToJson(), header: requestHeader);

    }
}
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 is compatible.  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 is compatible.  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. 
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 (1)

Showing the top 1 NuGet packages that depend on Bat.Http:

Package Downloads
Bat.AspNetCore

This Package Contain Useful Library And Extention Method For Easy Develop High Tech Asp.Net Core Mvc Application. ForExample : Implementation Of Authentication, Authorization, TagHelpers, CustomAttribute, ResponseCache, ExtensionMethod, ...

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.2 98 3/5/2024
8.0.1 122 1/22/2024
8.0.0 187 12/1/2023
7.0.3 264 3/1/2023
7.0.0 336 12/5/2022
6.0.22 185 8/19/2023
6.0.21 162 8/19/2023
6.0.1 747 3/27/2022
1.1.4 1,256 10/18/2021
1.1.3 685 7/12/2021
1.1.2 806 4/8/2021
1.1.0 982 3/26/2021
1.0.7 578 2/4/2021
1.0.6 396 1/5/2021
1.0.5 398 11/26/2020
1.0.4 742 10/19/2020

- Upgrade to net8.0 and C#12.0
- Add new extension methods for send all type of http request
- Add extension methods for get client informations