PdfDocument.Notifications.ObserveDidEndFind Method

Definition

Overloads

ObserveDidEndFind(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndFindNotification constant.

ObserveDidEndFind(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndFindNotification constant.

ObserveDidEndFind(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndFindNotification constant.

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

Parameters

objectToObserve
NSObject

The object to observe.

handler
EventHandler<NSNotificationEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

This method can be used to subscribe for DidEndFindNotification notifications.

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

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

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

Applies to

ObserveDidEndFind(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndFindNotification constant.

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

Parameters

handler
EventHandler<NSNotificationEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

This method can be used to subscribe for DidEndFindNotification notifications.

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

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

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

Applies to