Edit

Share via


MPMusicPlayerControllerQueue.Notifications.ObserveDidChange Method

Definition

Overloads

ObserveDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidChangeNotification constant.

ObserveDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidChangeNotification constant.

ObserveDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidChangeNotification constant.

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

Parameters

handler
EventHandler<NSNotificationEventArgs>

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 DidChangeNotification notifications.

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

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

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

Applies to

ObserveDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidChangeNotification constant.

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

Parameters

objectToObserve
NSObject

The object to observe.

handler
EventHandler<NSNotificationEventArgs>

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 DidChangeNotification notifications.

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

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

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

Applies to