[Foundation] Fix return type for NSUrlSessionHandler.AutomaticDecompression. Fixes #13576. (#13577)

This was probably a c&p error.

Fixes https://github.com/xamarin/xamarin-macios/issues/13576.
This commit is contained in:
Rolf Bjarne Kvinge 2021-12-15 20:49:58 +01:00 коммит произвёл GitHub
Родитель 3f43eef35b
Коммит b0b768ff57
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -532,7 +532,7 @@ namespace Foundation {
#if NET
// Properties that will be called by the default HttpClientHandler
public bool AutomaticDecompression {
public DecompressionMethods AutomaticDecompression {
get => throw new PlatformNotSupportedException ();
set => throw new PlatformNotSupportedException ();
}