Поделиться через


PdfDocument.Notifications.ObserveDidFindMatch Метод

Определение

Перегрузки

ObserveDidFindMatch(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidFindMatchNotification .

ObserveDidFindMatch(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidFindMatchNotification .

ObserveDidFindMatch(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidFindMatchNotification .

public static Foundation.NSObject ObserveDidFindMatch (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidFindMatch : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

handler
EventHandler<NSNotificationEventArgs>

Метод, вызываемый при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на DidFindMatchNotification уведомления.

// Listen to all notifications posted for any object
var token = PdfDocument.Notifications.ObserveDidFindMatch ((notification) => {
	Console.WriteLine ("Observed DidFindMatchNotification!");
};

// Listen to all notifications posted for a single object
var token = PdfDocument.Notifications.ObserveDidFindMatch (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed DidFindMatchNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Применяется к

ObserveDidFindMatch(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidFindMatchNotification .

public static Foundation.NSObject ObserveDidFindMatch (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidFindMatch : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

objectToObserve
NSObject

Объект для наблюдения.

handler
EventHandler<NSNotificationEventArgs>

Метод, вызываемый при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на DidFindMatchNotification уведомления.

// Listen to all notifications posted for any object
var token = PdfDocument.Notifications.ObserveDidFindMatch ((notification) => {
	Console.WriteLine ("Observed DidFindMatchNotification!");
};

// Listen to all notifications posted for a single object
var token = PdfDocument.Notifications.ObserveDidFindMatch (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed DidFindMatchNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Применяется к