Partager via


AVPlayerItem.Notifications.ObserveItemFailedToPlayToEndTime Méthode

Définition

Surcharges

ObserveItemFailedToPlayToEndTime(EventHandler<AVPlayerItemErrorEventArgs>)

Notification fortement typée pour la ItemFailedToPlayToEndTimeNotification constante.

ObserveItemFailedToPlayToEndTime(NSObject, EventHandler<AVPlayerItemErrorEventArgs>)

Notification fortement typée pour la ItemFailedToPlayToEndTimeNotification constante.

ObserveItemFailedToPlayToEndTime(EventHandler<AVPlayerItemErrorEventArgs>)

Notification fortement typée pour la ItemFailedToPlayToEndTimeNotification constante.

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

Paramètres

handler
EventHandler<AVPlayerItemErrorEventArgs>

Méthode à appeler lors de la publication de la notification.

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

L’exemple suivant montre comment les développeurs peuvent utiliser cette méthode dans leur code :

//
// 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 ();
}

S’applique à

ObserveItemFailedToPlayToEndTime(NSObject, EventHandler<AVPlayerItemErrorEventArgs>)

Notification fortement typée pour 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

Paramètres

objectToObserve
NSObject

Objet spécifique à observer.

handler
EventHandler<AVPlayerItemErrorEventArgs>

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 ItemFailedToPlayToEndTimeNotification s’abonner aux notifications.

// 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 ();

S’applique à