PdfView.Notifications.ObserveDocumentChanged Método

Definición

Sobrecargas

ObserveDocumentChanged(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DocumentChangedNotification constante.

ObserveDocumentChanged(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DocumentChangedNotification constante.

ObserveDocumentChanged(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DocumentChangedNotification constante.

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

Parámetros

handler
EventHandler<NSNotificationEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse DocumentChangedNotification a las notificaciones.

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

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

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

Se aplica a

ObserveDocumentChanged(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DocumentChangedNotification constante.

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

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<NSNotificationEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse DocumentChangedNotification a las notificaciones.

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

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

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

Se aplica a