[UIKit] Fix properties in UIConfigurationColorTransformer Type (#16732)

Changing properties to be internal
Fixes #16665

Co-authored-by: GitHub Actions Autoformatter <github-actions-autoformatter@xamarin.com>
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
This commit is contained in:
Haritha Mohan 2022-11-15 21:37:38 -08:00 коммит произвёл GitHub
Родитель 58a14e9231
Коммит c67f3d06c4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -23956,9 +23956,19 @@ namespace UIKit {
[Field ("UIConfigurationColorTransformerGrayscale")] [Field ("UIConfigurationColorTransformerGrayscale")]
IntPtr _Grayscale { get; } IntPtr _Grayscale { get; }
#if XAMCORE_5_0
[Internal]
#else
[Obsolete ("Use the 'PreferredTint' property instead.")]
#endif
[Field ("UIConfigurationColorTransformerPreferredTint")] [Field ("UIConfigurationColorTransformerPreferredTint")]
IntPtr _PreferredTint { get; } IntPtr _PreferredTint { get; }
#if XAMCORE_5_0
[Internal]
#else
[Obsolete ("Use the 'MonochromeTint' property instead.")]
#endif
[Field ("UIConfigurationColorTransformerMonochromeTint")] [Field ("UIConfigurationColorTransformerMonochromeTint")]
IntPtr _MonochromeTint { get; } IntPtr _MonochromeTint { get; }
} }