UIView.Notifications.ObserveClosedCaptioningStatusDidChange Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ObserveClosedCaptioningStatusDidChange(EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die ClosedCaptioningStatusDidChangeNotification Konstante. |
ObserveClosedCaptioningStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die ClosedCaptioningStatusDidChangeNotification Konstante. |
ObserveClosedCaptioningStatusDidChange(EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die ClosedCaptioningStatusDidChangeNotification Konstante.
public static Foundation.NSObject ObserveClosedCaptioningStatusDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveClosedCaptioningStatusDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- handler
- EventHandler<NSNotificationEventArgs>
Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren ClosedCaptioningStatusDidChangeNotification .
// Listen to all notifications posted for any object
var token = UIView.Notifications.ObserveClosedCaptioningStatusDidChange ((notification) => {
Console.WriteLine ("Observed ClosedCaptioningStatusDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = UIView.Notifications.ObserveClosedCaptioningStatusDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed ClosedCaptioningStatusDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Gilt für:
ObserveClosedCaptioningStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die ClosedCaptioningStatusDidChangeNotification Konstante.
public static Foundation.NSObject ObserveClosedCaptioningStatusDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveClosedCaptioningStatusDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- objectToObserve
- NSObject
Das zu beobachtende Objekt.
- handler
- EventHandler<NSNotificationEventArgs>
Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren ClosedCaptioningStatusDidChangeNotification .
// Listen to all notifications posted for any object
var token = UIView.Notifications.ObserveClosedCaptioningStatusDidChange ((notification) => {
Console.WriteLine ("Observed ClosedCaptioningStatusDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = UIView.Notifications.ObserveClosedCaptioningStatusDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed ClosedCaptioningStatusDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();