MPVolumeView.Notifications.ObserveWirelessRouteActiveDidChange 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
ObserveWirelessRouteActiveDidChange(EventHandler<NSNotificationEventArgs>) |
Strongly typed notification for the WirelessRouteActiveDidChangeNotification constant. |
ObserveWirelessRouteActiveDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Strongly typed notification for the WirelessRouteActiveDidChangeNotification constant. |
ObserveWirelessRouteActiveDidChange(EventHandler<NSNotificationEventArgs>)
Strongly typed notification for the WirelessRouteActiveDidChangeNotification constant.
public static Foundation.NSObject ObserveWirelessRouteActiveDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWirelessRouteActiveDidChange : 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 WirelessRouteActiveDidChangeNotification notifications.
// Listen to all notifications posted for any object
var token = MPVolumeView.Notifications.ObserveWirelessRouteActiveDidChange ((notification) => {
Console.WriteLine ("Observed WirelessRouteActiveDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = MPVolumeView.Notifications.ObserveWirelessRouteActiveDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WirelessRouteActiveDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Applies to
ObserveWirelessRouteActiveDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Strongly typed notification for the WirelessRouteActiveDidChangeNotification constant.
public static Foundation.NSObject ObserveWirelessRouteActiveDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWirelessRouteActiveDidChange : 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 WirelessRouteActiveDidChangeNotification notifications.
// Listen to all notifications posted for any object
var token = MPVolumeView.Notifications.ObserveWirelessRouteActiveDidChange ((notification) => {
Console.WriteLine ("Observed WirelessRouteActiveDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = MPVolumeView.Notifications.ObserveWirelessRouteActiveDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WirelessRouteActiveDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();