Info
Version: | 1.0.1 |
Author(s): | Tomasz Margacz |
Last Update: | Tuesday, January 16, 2018 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/MakeHttpRequestEasily |
Install
Install-Package MakeHttpRequestEasily
dotnet add package MakeHttpRequestEasily
paket add MakeHttpRequestEasily
MakeHttpRequestEasily Download (Unzip the "nupkg" after downloading)
Dependencies
- Microsoft.AspNet.WebApi.Client(>= 5.2.3)
- HttpClientExtensions.Patch(>= 1.0.0)
Tags
How to use:
var address = "http://localhost:50787/api/Test/Test";
var requestModel = new RequestModel() { Id = "guid" };
var result = new HttpClientHelper().PostJson<ResponseModel>(address, "Basic", "***", requestModel);.