次の方法で共有


MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen メソッド

定義

オーバーロード

ObserveWillEnterFullscreen(EventHandler<NSNotificationEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

ObserveWillEnterFullscreen(EventHandler<MPMoviePlayerFullScreenEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

ObserveWillEnterFullscreen(NSObject, EventHandler<NSNotificationEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

ObserveWillEnterFullscreen(NSObject, EventHandler<MPMoviePlayerFullScreenEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

ObserveWillEnterFullscreen(EventHandler<NSNotificationEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

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

パラメーター

handler
EventHandler<NSNotificationEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、 に渡すことによって通知の受信を停止するために使用できる Token オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

次の例は、開発者がコードでこのメソッドを使用する方法を示しています。

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

適用対象

ObserveWillEnterFullscreen(EventHandler<MPMoviePlayerFullScreenEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

public static Foundation.NSObject ObserveWillEnterFullscreen (EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> handler);
static member ObserveWillEnterFullscreen : EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> -> Foundation.NSObject

パラメーター

handler
EventHandler<MPMoviePlayerFullScreenEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、 に渡すことによって通知の受信を停止するために使用できる Token オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

このメソッドは、通知を WillEnterFullscreenNotification サブスクライブするために使用できます。

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

適用対象

ObserveWillEnterFullscreen(NSObject, EventHandler<NSNotificationEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

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

パラメーター

objectToObserve
NSObject

観察するオブジェクト。

handler
EventHandler<NSNotificationEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、 に渡すことによって通知の受信を停止するために使用できる Token オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

このメソッドは、通知を WillEnterFullscreenNotification サブスクライブするために使用できます。

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

適用対象

ObserveWillEnterFullscreen(NSObject, EventHandler<MPMoviePlayerFullScreenEventArgs>)

定数の厳密に型指定された通知 WillEnterFullscreenNotification

public static Foundation.NSObject ObserveWillEnterFullscreen (Foundation.NSObject objectToObserve, EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> handler);
static member ObserveWillEnterFullscreen : Foundation.NSObject * EventHandler<MediaPlayer.MPMoviePlayerFullScreenEventArgs> -> Foundation.NSObject

パラメーター

objectToObserve
NSObject

観察するオブジェクト。

handler
EventHandler<MPMoviePlayerFullScreenEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、 に渡すことによって通知の受信を停止するために使用できる Token オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

このメソッドは、通知を WillEnterFullscreenNotification サブスクライブするために使用できます。

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

適用対象