[ImageKit] Fix capitalization mistakes autoPlayDelay -> AutoPlayDelay, filterArray -> FilterArray (#16575)

Fixes #16573
This commit is contained in:
Haritha Mohan 2022-11-04 10:11:16 -04:00 коммит произвёл GitHub
Родитель 15ceecf152
Коммит 915b9faaab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 14 добавлений и 2 удалений

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

@ -726,8 +726,14 @@ namespace ImageKit {
[Protocolize]
IKImageEditPanelDataSource DataSource { get; set; }
[Export ("filterArray")]
#if !XAMCORE_5_0
[Obsolete ("Use the 'FilterArray' property instead.")]
[Wrap ("FilterArray", IsVirtual = true)]
NSArray filterArray { get; }
#endif
[Export ("filterArray")]
NSArray FilterArray { get; }
[Export ("reloadData")]
void ReloadData ();
@ -1068,8 +1074,14 @@ namespace ImageKit {
[Export ("sharedSlideshow")]
IKSlideshow SharedSlideshow { get; }
[Export ("autoPlayDelay")]
#if !XAMCORE_5_0
[Obsolete ("Use the 'AutoPlayDelay' property instead.")]
[Wrap ("AutoPlayDelay", IsVirtual = true)]
double autoPlayDelay { get; set; }
#endif
[Export ("autoPlayDelay")]
double AutoPlayDelay { get; set; }
[Export ("runSlideshowWithDataSource:inMode:options:")]
void RunSlideshow ([Protocolize] IKSlideshowDataSource dataSource, string slideshowMode, NSDictionary slideshowOptions);