Compartir a través de


AVPlayerItem.Notifications.ObserveItemFailedToPlayToEndTime Método

Definición

Sobrecargas

ObserveItemFailedToPlayToEndTime(EventHandler<AVPlayerItemErrorEventArgs>)

Notificación fuertemente tipada para la ItemFailedToPlayToEndTimeNotification constante.

ObserveItemFailedToPlayToEndTime(NSObject, EventHandler<AVPlayerItemErrorEventArgs>)

Notificación fuertemente tipada para la ItemFailedToPlayToEndTimeNotification constante.

ObserveItemFailedToPlayToEndTime(EventHandler<AVPlayerItemErrorEventArgs>)

Notificación fuertemente tipada para la ItemFailedToPlayToEndTimeNotification constante.

public static Foundation.NSObject ObserveItemFailedToPlayToEndTime (EventHandler<AVFoundation.AVPlayerItemErrorEventArgs> handler);
static member ObserveItemFailedToPlayToEndTime : EventHandler<AVFoundation.AVPlayerItemErrorEventArgs> -> Foundation.NSObject

Parámetros

handler
EventHandler<AVPlayerItemErrorEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

En el ejemplo siguiente se muestra cómo los desarrolladores pueden usar este método en su código:

//
// Lambda style
//

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

    Console.WriteLine ("Error", args.Error);
});

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

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

    Console.WriteLine ("Error", args.Error);
}

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

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

Se aplica a

ObserveItemFailedToPlayToEndTime(NSObject, EventHandler<AVPlayerItemErrorEventArgs>)

Notificación fuertemente tipada para la ItemFailedToPlayToEndTimeNotification constante.

public static Foundation.NSObject ObserveItemFailedToPlayToEndTime (Foundation.NSObject objectToObserve, EventHandler<AVFoundation.AVPlayerItemErrorEventArgs> handler);
static member ObserveItemFailedToPlayToEndTime : Foundation.NSObject * EventHandler<AVFoundation.AVPlayerItemErrorEventArgs> -> Foundation.NSObject

Parámetros

objectToObserve
NSObject

Objeto específico que se va a observar.

handler
EventHandler<AVPlayerItemErrorEventArgs>

Controlador que responde a la notificación cuando se produce.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse ItemFailedToPlayToEndTimeNotification a las notificaciones.

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

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

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

Se aplica a