Compartir a través de


AVPlayerItem.Notifications.ObserveTimeJumped Método

Definición

Sobrecargas

ObserveTimeJumped(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la TimeJumpedNotification constante.

ObserveTimeJumped(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la TimeJumpedNotification constante.

ObserveTimeJumped(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la TimeJumpedNotification constante.

public static Foundation.NSObject ObserveTimeJumped (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveTimeJumped : 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

En el ejemplo siguiente se muestra cómo puede usar este método en el código.

//
// Lambda style
//

// listening
notification = AVPlayerItem.Notifications.ObserveTimeJumped ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);
}

void Setup ()
{
    notification = AVPlayerItem.Notifications.ObserveTimeJumped (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

Se aplica a

ObserveTimeJumped(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la TimeJumpedNotification constante.

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

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

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

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

Se aplica a