Compartilhar via


PdfDocument.Notifications.ObserveDidBeginFind Método

Definição

Sobrecargas

ObserveDidBeginFind(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidBeginFindNotification constante.

ObserveDidBeginFind(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidBeginFindNotification constante.

ObserveDidBeginFind(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidBeginFindNotification constante.

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

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar DidBeginFindNotification notificações.

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

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

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

Aplica-se a

ObserveDidBeginFind(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidBeginFindNotification constante.

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

Parâmetros

objectToObserve
NSObject

O objeto a ser observado.

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar DidBeginFindNotification notificações.

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

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

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

Aplica-se a