PdfThumbnailView.Notifications.ObserveDocumentEdited Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
ObserveDocumentEdited(EventHandler<NSNotificationEventArgs>) |
Строго типизированное уведомление для константы DocumentEditedNotification . |
ObserveDocumentEdited(NSObject, EventHandler<NSNotificationEventArgs>) |
Строго типизированное уведомление для константы DocumentEditedNotification . |
ObserveDocumentEdited(EventHandler<NSNotificationEventArgs>)
Строго типизированное уведомление для константы DocumentEditedNotification .
public static Foundation.NSObject ObserveDocumentEdited (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDocumentEdited : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Параметры
- handler
- EventHandler<NSNotificationEventArgs>
Метод, вызываемый при публикации уведомления.
Возвращаемое значение
Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)
Комментарии
Этот метод можно использовать для подписки на DocumentEditedNotification уведомления.
// Listen to all notifications posted for any object
var token = PdfThumbnailView.Notifications.ObserveDocumentEdited ((notification) => {
Console.WriteLine ("Observed DocumentEditedNotification!");
};
// Listen to all notifications posted for a single object
var token = PdfThumbnailView.Notifications.ObserveDocumentEdited (objectToObserve, (notification) => {
Console.WriteLine ($"Observed DocumentEditedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Применяется к
ObserveDocumentEdited(NSObject, EventHandler<NSNotificationEventArgs>)
Строго типизированное уведомление для константы DocumentEditedNotification .
public static Foundation.NSObject ObserveDocumentEdited (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDocumentEdited : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Параметры
- objectToObserve
- NSObject
Объект для наблюдения.
- handler
- EventHandler<NSNotificationEventArgs>
Метод, вызываемый при публикации уведомления.
Возвращаемое значение
Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)
Комментарии
Этот метод можно использовать для подписки на DocumentEditedNotification уведомления.
// Listen to all notifications posted for any object
var token = PdfThumbnailView.Notifications.ObserveDocumentEdited ((notification) => {
Console.WriteLine ("Observed DocumentEditedNotification!");
};
// Listen to all notifications posted for a single object
var token = PdfThumbnailView.Notifications.ObserveDocumentEdited (objectToObserve, (notification) => {
Console.WriteLine ($"Observed DocumentEditedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();