PdfView.Notifications.ObserveCopyPermission Método

Definición

Sobrecargas

ObserveCopyPermission(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CopyPermissionNotification constante.

ObserveCopyPermission(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CopyPermissionNotification constante.

ObserveCopyPermission(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CopyPermissionNotification constante.

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

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

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

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

Se aplica a

ObserveCopyPermission(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la CopyPermissionNotification constante.

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

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

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

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

Se aplica a