[QuickLook] Use the correct name properties in QLPreviewItem. Fixes #4450 (#4855)

* [QuickLook] Use the correct name properties in QLPreviewItem. Fixes #4450

Renamed properties for the next time we can make breaking changes.

Fixes https://github.com/xamarin/xamarin-macios/issues/4450
This commit is contained in:
Manuel de la Pena 2018-09-21 12:05:06 +02:00 коммит произвёл GitHub
Родитель 29d90e5ecd
Коммит dd4904f0b6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 2 удалений

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

@ -130,13 +130,19 @@ namespace QuickLook {
interface QLPreviewItem {
[Abstract]
[Export ("previewItemURL")]
#if XAMCORE_4_0
NSUrl PreviewItemUrl { get; }
#else
NSUrl ItemUrl { get; }
#endif
[Export ("previewItemTitle")]
#if !XAMCORE_4_0
[Abstract]
#endif
[Export ("previewItemTitle")]
string ItemTitle { get; }
#else
string PreviewItemTitle { get; }
#endif
}
[iOS (11,0)]