AVAssetTrack.Notifications.ObserveTimeRangeDidChange Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ObserveTimeRangeDidChange(EventHandler<NSNotificationEventArgs>) |
Notificación fuertemente tipada para la TimeRangeDidChangeNotification constante. |
ObserveTimeRangeDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificación fuertemente tipada para la TimeRangeDidChangeNotification constante. |
ObserveTimeRangeDidChange(EventHandler<NSNotificationEventArgs>)
Notificación fuertemente tipada para la TimeRangeDidChangeNotification constante.
public static Foundation.NSObject ObserveTimeRangeDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveTimeRangeDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parámetros
- handler
- EventHandler<NSNotificationEventArgs>
Controlador que responde a la notificación cuando se produce.
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 TimeRangeDidChangeNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = AVAssetTrack.Notifications.ObserveTimeRangeDidChange ((notification) => {
Console.WriteLine ("Observed TimeRangeDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = AVAssetTrack.Notifications.ObserveTimeRangeDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed TimeRangeDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Se aplica a
ObserveTimeRangeDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificación fuertemente tipada para la TimeRangeDidChangeNotification constante.
public static Foundation.NSObject ObserveTimeRangeDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveTimeRangeDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parámetros
- objectToObserve
- NSObject
Objeto específico que se va a observar.
- handler
- EventHandler<NSNotificationEventArgs>
Controlador que responde a la notificación cuando se produce.
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 TimeRangeDidChangeNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = AVAssetTrack.Notifications.ObserveTimeRangeDidChange ((notification) => {
Console.WriteLine ("Observed TimeRangeDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = AVAssetTrack.Notifications.ObserveTimeRangeDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed TimeRangeDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();