WKInterfaceObject.Notifications.ObserveHearingDevicePairedEarDidChange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveHearingDevicePairedEarDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a HearingDevicePairedEarDidChangeNotification constante. |
ObserveHearingDevicePairedEarDidChange(EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a HearingDevicePairedEarDidChangeNotification constante. |
ObserveHearingDevicePairedEarDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a 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
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 HearingDevicePairedEarDidChangeNotification notificações.
// 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 ();
Aplica-se a
ObserveHearingDevicePairedEarDidChange(EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a 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 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 HearingDevicePairedEarDidChangeNotification notificações.
// 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 ();