다음을 통해 공유


MPMoviePlayerController.Notifications.ObserveWillExitFullscreen 메서드

정의

오버로드

ObserveWillExitFullscreen(EventHandler<MPMoviePlayerFullScreenEventArgs>)

상수에 대한 강력한 형식의 알림입니다 WillExitFullscreenNotification .

ObserveWillExitFullscreen(NSObject, EventHandler<MPMoviePlayerFullScreenEventArgs>)

상수에 대한 강력한 형식의 알림입니다 WillExitFullscreenNotification .

ObserveWillExitFullscreen(EventHandler<MPMoviePlayerFullScreenEventArgs>)

상수에 대한 강력한 형식의 알림입니다 WillExitFullscreenNotification .

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

매개 변수

handler
EventHandler<MPMoviePlayerFullScreenEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

다음 예제에서는 개발자가 코드에서 이 메서드를 사용하는 방법을 보여 줍니다.

//
// Lambda style
//

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

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

적용 대상

ObserveWillExitFullscreen(NSObject, EventHandler<MPMoviePlayerFullScreenEventArgs>)

상수에 대한 강력한 형식의 알림입니다 WillExitFullscreenNotification .

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

매개 변수

objectToObserve
NSObject

관찰할 개체입니다.

handler
EventHandler<MPMoviePlayerFullScreenEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

이 메서드를 사용하여 알림을 구독 WillExitFullscreenNotification 할 수 있습니다.

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

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

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

적용 대상