MPMoviePlayerController.Notifications.ObserveTimedMetadataUpdated Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ObserveTimedMetadataUpdated(NSObject, EventHandler<MPMoviePlayerTimedMetadataEventArgs>) |
Strongly typed notification for the TimedMetadataUpdatedNotification constant. |
ObserveTimedMetadataUpdated(EventHandler<MPMoviePlayerTimedMetadataEventArgs>) |
Strongly typed notification for the TimedMetadataUpdatedNotification constant. |
ObserveTimedMetadataUpdated(NSObject, EventHandler<MPMoviePlayerTimedMetadataEventArgs>)
Strongly typed notification for the TimedMetadataUpdatedNotification constant.
public static Foundation.NSObject ObserveTimedMetadataUpdated (Foundation.NSObject objectToObserve, EventHandler<MediaPlayer.MPMoviePlayerTimedMetadataEventArgs> handler);
static member ObserveTimedMetadataUpdated : Foundation.NSObject * EventHandler<MediaPlayer.MPMoviePlayerTimedMetadataEventArgs> -> Foundation.NSObject
Parameters
- objectToObserve
- NSObject
The object to observe.
Method to invoke when the notification is posted.
Returns
Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)
Remarks
This method can be used to subscribe for TimedMetadataUpdatedNotification notifications.
// 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 ();
Applies to
ObserveTimedMetadataUpdated(EventHandler<MPMoviePlayerTimedMetadataEventArgs>)
Strongly typed notification for the TimedMetadataUpdatedNotification constant.
public static Foundation.NSObject ObserveTimedMetadataUpdated (EventHandler<MediaPlayer.MPMoviePlayerTimedMetadataEventArgs> handler);
static member ObserveTimedMetadataUpdated : EventHandler<MediaPlayer.MPMoviePlayerTimedMetadataEventArgs> -> Foundation.NSObject
Parameters
Method to invoke when the notification is posted.
Returns
Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)
Remarks
The following example shows how developers can use this method in their code:
//
// 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 ();
}