v1.0.19
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Essentials.Http --version 1.0.19
or the NuGet package manager:
Install-Package Skybrud.Essentials.Http -Version 1.0.19
Changelog
- Improved
HttpRequest.GetResponse
exception handling (see #2 and 484dfff)
.NET's exception handling differs slightly for HTTP protocol errors when comparing .NET Framework and .NET Standard, so the .NET Standard version of this package didn't properly detectWebException
exceptions as they were hidden behind anAggregateException
. With this release,WebException
exception are now properly detected from the inner exception of theAggregateException
.