[xcode14.1] [AVFoundation] Fix capitalization issue (#16484)

currentTime property incorrectly capitalized in AVAudioRecorder type
Fixes #16458

Backport of #16461

Co-authored-by: Haritha Mohan <harithamohan@microsoft.com>
This commit is contained in:
VS MobileTools Engineering Service 2 2022-10-26 13:39:06 -07:00 коммит произвёл GitHub
Родитель c797b77838
Коммит 589836ccef
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -1833,8 +1833,14 @@ namespace AVFoundation {
[Protocolize]
AVAudioRecorderDelegate Delegate { get; set; }
[Export ("currentTime")]
#if !XAMCORE_5_0
[Obsolete ("Use the 'CurrentTime' property instead.")]
[Wrap ("CurrentTime", IsVirtual = true)]
double currentTime { get; }
#endif
[Export ("currentTime")]
double CurrentTime { get; }
[Export ("meteringEnabled")]
bool MeteringEnabled { [Bind ("isMeteringEnabled")] get; set; }