Compartir a través de


MPMoviePlayerController.Notifications.ObserveMoviePlayerReadyForDisplayDidChange Método

Definición

Sobrecargas

ObserveMoviePlayerReadyForDisplayDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la MoviePlayerReadyForDisplayDidChangeNotification constante.

ObserveMoviePlayerReadyForDisplayDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la MoviePlayerReadyForDisplayDidChangeNotification constante.

ObserveMoviePlayerReadyForDisplayDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la MoviePlayerReadyForDisplayDidChangeNotification constante.

public static Foundation.NSObject ObserveMoviePlayerReadyForDisplayDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveMoviePlayerReadyForDisplayDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parámetros

handler
EventHandler<NSNotificationEventArgs>

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 puede usar este método en el código.

//
// Lambda style
//

// listening
notification = MPMoviePlayerController.Notifications.ObserveMoviePlayerReadyForDisplayDidChange ((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 = MPMoviePlayerController.Notifications.ObserveMoviePlayerReadyForDisplayDidChange (Callback);
}

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

Se aplica a

ObserveMoviePlayerReadyForDisplayDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la MoviePlayerReadyForDisplayDidChangeNotification constante.

public static Foundation.NSObject ObserveMoviePlayerReadyForDisplayDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveMoviePlayerReadyForDisplayDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<NSNotificationEventArgs>

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

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

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

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

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

Se aplica a