Compartir a través de


PdfDocument.Notifications.ObserveDidBeginPageWrite Método

Definición

Sobrecargas

ObserveDidBeginPageWrite(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidBeginPageWriteNotification constante.

ObserveDidBeginPageWrite(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidBeginPageWriteNotification constante.

ObserveDidBeginPageWrite(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidBeginPageWriteNotification constante.

public static Foundation.NSObject ObserveDidBeginPageWrite (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidBeginPageWrite : 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 DidBeginPageWriteNotification a las notificaciones.

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

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

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

Se aplica a

ObserveDidBeginPageWrite(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidBeginPageWriteNotification constante.

public static Foundation.NSObject ObserveDidBeginPageWrite (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidBeginPageWrite : 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 DidBeginPageWriteNotification a las notificaciones.

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

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

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

Se aplica a