AVRouteDetector.Notifications.ObserveMultipleRoutesDetectedDidChange Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ObserveMultipleRoutesDetectedDidChange(EventHandler<NSNotificationEventArgs>) |
Notification fortement typée pour la constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification . |
ObserveMultipleRoutesDetectedDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notification fortement typée pour la constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification . |
ObserveMultipleRoutesDetectedDidChange(EventHandler<NSNotificationEventArgs>)
Notification fortement typée pour la constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .
public static Foundation.NSObject ObserveMultipleRoutesDetectedDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveMultipleRoutesDetectedDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Paramètres
- handler
- EventHandler<NSNotificationEventArgs>
Gestionnaire qui répond à la notification lorsqu’elle se produit.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
Cette méthode peut être utilisée pour s’abonner aux notifications P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .
// Listen to all notifications posted for any object
var token = AVRouteDetector.Notifications.ObserveMultipleRoutesDetectedDidChange ((notification) => {
Console.WriteLine ("Observed MultipleRoutesDetectedDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = AVRouteDetector.Notifications.ObserveMultipleRoutesDetectedDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed MultipleRoutesDetectedDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
S’applique à
ObserveMultipleRoutesDetectedDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notification fortement typée pour la constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .
public static Foundation.NSObject ObserveMultipleRoutesDetectedDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveMultipleRoutesDetectedDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Paramètres
- objectToObserve
- NSObject
Objet spécifique à observer.
- handler
- EventHandler<NSNotificationEventArgs>
Gestionnaire qui répond à la notification lorsqu’elle se produit.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
Cette méthode peut être utilisée pour s’abonner aux notifications P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .
// Listen to all notifications posted for any object
var token = AVRouteDetector.Notifications.ObserveMultipleRoutesDetectedDidChange ((notification) => {
Console.WriteLine ("Observed MultipleRoutesDetectedDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = AVRouteDetector.Notifications.ObserveMultipleRoutesDetectedDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed MultipleRoutesDetectedDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();