Date | 2019-09-07 (1,896 days ago) |
---|---|
Downloads | 1,780 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET Standard 1.3 .NET Standard 2.0 .NET 4.5 .NET 4.6 .NET 4.7 |
#installation
">Installation#changelog
">ChangelogAdded Post
method overload to the HttpRequest
class (see d157930
).
The added method overload only takes a URL as a parameter, so it serves a supplement to the existing Post
overloads.
Shorter method in the HttpClient
class (see 4f249e4
)
Added new Get
, Post
, Put
, Patch
and Delete
methods as replacements for the DoHttpGetRequest
, DoHttpPostRequest
, DoHttpPutRequest
, DoHttpPatchRequest
and DoHttpDeleteRequest
methods. The existing methods have been marked as obsolete, suggestion that the new and shorter method names should be used instead.
Marked the HttpUtils.Http
utility class as obsolete (see 0e04b43
)
Similar logic exists in the HttpUtils.Requests
utility class, which should therefore be used instead.