次の方法で共有


MPMoviePlayerController.Notifications.ObserveTimedMetadataUpdated メソッド

定義

オーバーロード

ObserveTimedMetadataUpdated(NSObject, EventHandler<MPMoviePlayerTimedMetadataEventArgs>)

定数に対して TimedMetadataUpdatedNotification 厳密に型指定された通知。

ObserveTimedMetadataUpdated(EventHandler<MPMoviePlayerTimedMetadataEventArgs>)

定数に対して TimedMetadataUpdatedNotification 厳密に型指定された通知。

ObserveTimedMetadataUpdated(NSObject, EventHandler<MPMoviePlayerTimedMetadataEventArgs>)

定数に対して TimedMetadataUpdatedNotification 厳密に型指定された通知。

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

パラメーター

objectToObserve
NSObject

観察するオブジェクト。

handler
EventHandler<MPMoviePlayerTimedMetadataEventArgs>

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

戻り値

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

注釈

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

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

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

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

適用対象

ObserveTimedMetadataUpdated(EventHandler<MPMoviePlayerTimedMetadataEventArgs>)

定数に対して TimedMetadataUpdatedNotification 厳密に型指定された通知。

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

パラメーター

handler
EventHandler<MPMoviePlayerTimedMetadataEventArgs>

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

戻り値

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

注釈

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

//
// Lambda style
//

// listening
notification = MPMoviePlayerController.Notifications.ObserveTimedMetadataUpdated ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("TimedMetadata", args.TimedMetadata);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, MediaPlayer.MPMoviePlayerTimedMetadataEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("TimedMetadata", args.TimedMetadata);
}

void Setup ()
{
    notification = MPMoviePlayerController.Notifications.ObserveTimedMetadataUpdated (Callback);
}

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

適用対象