Fukicycle.Tool.HttpClientExtensions
1.0.1
See the version list below for details.
dotnet add package Fukicycle.Tool.HttpClientExtensions --version 1.0.1
NuGet\Install-Package Fukicycle.Tool.HttpClientExtensions -Version 1.0.1
<PackageReference Include="Fukicycle.Tool.HttpClientExtensions" Version="1.0.1" />
paket add Fukicycle.Tool.HttpClientExtensions --version 1.0.1
#r "nuget: Fukicycle.Tool.HttpClientExtensions, 1.0.1"
// Install Fukicycle.Tool.HttpClientExtensions as a Cake Addin #addin nuget:?package=Fukicycle.Tool.HttpClientExtensions&version=1.0.1 // Install Fukicycle.Tool.HttpClientExtensions as a Cake Tool #tool nuget:?package=Fukicycle.Tool.HttpClientExtensions&version=1.0.1
Fukicycle.Tool.HttpClientExtensions
This library is a helper that creates requests necessary for HTTP communication. If you are having trouble with complicated settings for HTTP communication, please try using it.
Happy coding 😃
Features
- Provides a helper for HttpRequest.
Installing and Getting started
1. install package.
Fukicycle.Tool.HttpClientExtensions
is available for download and installation as NuGet packages.
dotnet add package Fukicycle.Tool.HttpClientExtensions --version <version>
2. Create your app.
HttpClient client = new HttpClient() { BaseAddress = new Uri("http://localhost:8001/") }; // 👈 set your base address!
HttpRequestMessage httpRequestMessage = new HttpRequestMessageBuilder() // 👈 create request message builder!
.AddHttpMethod(HttpMethod.Post) // 👈 set your HttpMethod
.AddEndPoint("/get/times") // 👈 set your end point for api or http request.
.Build(); // 👈 create HttpRequestMessage
HttpResponseResult responseResult = await new RequestHelper(client).SendAsync(httpRequestMessage); // 👈 Passing your http client. After that, you can send request!
// 👇 Now, we supported bellow contents.
Console.WriteLine(responseResult.JsonBody);
Console.WriteLine(responseResult.Message);
Console.WriteLine(responseResult.StatusCode);
Contributing
Pull requests and stars are always welcome.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create.
Any contributions you make are greatly appreciated.
- Fork the Project.
- Create your Feature Branch(
git checkout -b feature/amazing_feature
). - Commit your Changes(
git commit -m 'Add some changes'
). - Push to the Branch(
git push origin feature/amazing_feature
). - Open a Pull Request.
Author
License
MIT. Click here for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.