Compartilhar via


PdfView.Notifications.ObservePrintPermission Método

Definição

Sobrecargas

ObservePrintPermission(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a PrintPermissionNotification constante.

ObservePrintPermission(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a PrintPermissionNotification constante.

ObservePrintPermission(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a PrintPermissionNotification constante.

public static Foundation.NSObject ObservePrintPermission (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObservePrintPermission : 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 PrintPermissionNotification notificações.

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

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

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

Aplica-se a

ObservePrintPermission(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a PrintPermissionNotification constante.

public static Foundation.NSObject ObservePrintPermission (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObservePrintPermission : 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 PrintPermissionNotification notificações.

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

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

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

Aplica-se a