Bat.Http
8.0.2
dotnet add package Bat.Http --version 8.0.2
NuGet\Install-Package Bat.Http -Version 8.0.2
<PackageReference Include="Bat.Http" Version="8.0.2" />
paket add Bat.Http --version 8.0.2
#r "nuget: Bat.Http, 8.0.2"
// 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 | Versions 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. |
-
.NETStandard 2.1
- Bat.Core (>= 1.1.8)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
-
net5.0
- Bat.Core (>= 1.1.8)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
-
net6.0
- Bat.Core (>= 6.0.1)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
-
net7.0
- Bat.Core (>= 7.0.4)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Http.Polly (>= 7.0.14)
- Polly (>= 7.2.4)
- Polly.Extensions.Http (>= 3.0.0)
-
net8.0
- Bat.Core (>= 8.0.2)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Http.Polly (>= 8.0.1)
- Polly (>= 8.2.1)
- Polly.Extensions.Http (>= 3.0.0)
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 | 151 | 3/5/2024 |
8.0.1 | 158 | 1/22/2024 |
8.0.0 | 215 | 12/1/2023 |
7.0.3 | 292 | 3/1/2023 |
7.0.0 | 359 | 12/5/2022 |
6.0.22 | 224 | 8/19/2023 |
6.0.21 | 195 | 8/19/2023 |
6.0.1 | 786 | 3/27/2022 |
1.1.4 | 1,319 | 10/18/2021 |
1.1.3 | 722 | 7/12/2021 |
1.1.2 | 862 | 4/8/2021 |
1.1.0 | 1,020 | 3/26/2021 |
1.0.7 | 611 | 2/4/2021 |
1.0.6 | 420 | 1/5/2021 |
1.0.5 | 424 | 11/26/2020 |
1.0.4 | 775 | 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