1.5.0 (2020-09-03)
Changed
ETag
now supports weak ETags and implements an overload forToString
that accepts a format string.
Added
- HttpWebRequest-based transport implementation. Enabled by-default on .NET Framework. Can be disabled using
AZURE_CORE_DISABLE_HTTPWEBREQUESTTRANSPORT
environment variable orAzure.Core.Pipeline.DisableHttpWebRequestTransport
AppContext switch. To use the app context switch add the following snippet to your.csproj
:
<ItemGroup>
<RuntimeHostConfigurationOption Include="Azure.Core.Pipeline.DisableHttpWebRequestTransport" Value="true" />
</ItemGroup>
When the environment variable or the switch are set the HttpClientTransport
would be used by default instead.