Compartir a través de


WKInterfaceObject.Notifications.ObserveGuidedAccessStatusDidChange Método

Definición

Sobrecargas

ObserveGuidedAccessStatusDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la GuidedAccessStatusDidChangeNotification constante.

ObserveGuidedAccessStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la GuidedAccessStatusDidChangeNotification constante.

ObserveGuidedAccessStatusDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la GuidedAccessStatusDidChangeNotification constante.

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

Parámetros

handler
EventHandler<NSNotificationEventArgs>

Método que se invoca cuando se publica la notificación.

Devoluciones

Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)

Comentarios

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

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

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

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

Se aplica a

ObserveGuidedAccessStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la GuidedAccessStatusDidChangeNotification constante.

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

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<NSNotificationEventArgs>

Método que se invoca cuando se publica la notificación.

Devoluciones

Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)

Comentarios

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

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

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

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

Se aplica a