Compartir a través de


WKInterfaceObject.Notifications.ObserveHearingDevicePairedEarDidChange Método

Definición

Sobrecargas

ObserveHearingDevicePairedEarDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la HearingDevicePairedEarDidChangeNotification constante.

ObserveHearingDevicePairedEarDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la HearingDevicePairedEarDidChangeNotification constante.

ObserveHearingDevicePairedEarDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la HearingDevicePairedEarDidChangeNotification constante.

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

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

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

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

Se aplica a

ObserveHearingDevicePairedEarDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la HearingDevicePairedEarDidChangeNotification constante.

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

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

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

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

Se aplica a