MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveWillEnterFullscreen(EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a WillEnterFullscreenNotification constante. |
ObserveWillEnterFullscreen(EventHandler<MPMoviePlayerFullScreenEventArgs>) |
Notificação fortemente tipada para a WillEnterFullscreenNotification constante. |
ObserveWillEnterFullscreen(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a WillEnterFullscreenNotification constante. |
ObserveWillEnterFullscreen(NSObject, EventHandler<MPMoviePlayerFullScreenEventArgs>) |
Notificação fortemente tipada para a WillEnterFullscreenNotification constante. |
ObserveWillEnterFullscreen(EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a WillEnterFullscreenNotification constante.
public static Foundation.NSObject ObserveWillEnterFullscreen (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillEnterFullscreen : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parâmetros
- handler
- EventHandler<NSNotificationEventArgs>
Método a ser invocado quando a notificação é postada.
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
O exemplo a seguir mostra como os desenvolvedores podem usar esse método em seu código:
//
// Lambda style
//
// listening
notification = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("AnimationDuration", args.AnimationDuration);
Console.WriteLine ("AnimationCurve", args.AnimationCurve);
});
// 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);
Console.WriteLine ("AnimationDuration", args.AnimationDuration);
Console.WriteLine ("AnimationCurve", args.AnimationCurve);
}
void Setup ()
{
notification = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Aplica-se a
ObserveWillEnterFullscreen(EventHandler<MPMoviePlayerFullScreenEventArgs>)
Notificação fortemente tipada para a WillEnterFullscreenNotification constante.
public static Foundation.NSObject ObserveWillEnterFullscreen (EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> handler);
static member ObserveWillEnterFullscreen : EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> -> Foundation.NSObject
Parâmetros
Método a ser invocado quando a notificação é postada.
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar WillEnterFullscreenNotification notificações.
// Listen to all notifications posted for any object
var token = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen ((notification) => {
Console.WriteLine ("Observed WillEnterFullscreenNotification!");
};
// Listen to all notifications posted for a single object
var token = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillEnterFullscreenNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Aplica-se a
ObserveWillEnterFullscreen(NSObject, EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a WillEnterFullscreenNotification constante.
public static Foundation.NSObject ObserveWillEnterFullscreen (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillEnterFullscreen : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parâmetros
- objectToObserve
- NSObject
O objeto a ser observado.
- handler
- EventHandler<NSNotificationEventArgs>
Método a ser invocado quando a notificação é postada.
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar WillEnterFullscreenNotification notificações.
// Listen to all notifications posted for any object
var token = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen ((notification) => {
Console.WriteLine ("Observed WillEnterFullscreenNotification!");
};
// Listen to all notifications posted for a single object
var token = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillEnterFullscreenNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Aplica-se a
ObserveWillEnterFullscreen(NSObject, EventHandler<MPMoviePlayerFullScreenEventArgs>)
Notificação fortemente tipada para a WillEnterFullscreenNotification constante.
public static Foundation.NSObject ObserveWillEnterFullscreen (Foundation.NSObject objectToObserve, EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> handler);
static member ObserveWillEnterFullscreen : Foundation.NSObject * EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> -> Foundation.NSObject
Parâmetros
- objectToObserve
- NSObject
O objeto a ser observado.
Método a ser invocado quando a notificação é postada.
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar WillEnterFullscreenNotification notificações.
// Listen to all notifications posted for any object
var token = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen ((notification) => {
Console.WriteLine ("Observed WillEnterFullscreenNotification!");
};
// Listen to all notifications posted for a single object
var token = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillEnterFullscreenNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();