Compartilhar via


UIScreen.Notifications.ObserveCapturedDidChange Método

Definição

Sobrecargas

ObserveCapturedDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CapturedDidChangeNotification constante.

ObserveCapturedDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CapturedDidChangeNotification constante.

ObserveCapturedDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CapturedDidChangeNotification constante.

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

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

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

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

Aplica-se a

ObserveCapturedDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CapturedDidChangeNotification constante.

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

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

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

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

Aplica-se a