NEVpnManager.Notifications.ObserveConfigurationChange Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ObserveConfigurationChange(EventHandler<NSNotificationEventArgs>) |
Notificación fuertemente tipada para la ConfigurationChangeNotification constante. |
ObserveConfigurationChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificación fuertemente tipada para la ConfigurationChangeNotification constante. |
ObserveConfigurationChange(EventHandler<NSNotificationEventArgs>)
Notificación fuertemente tipada para la ConfigurationChangeNotification constante.
public static Foundation.NSObject ObserveConfigurationChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveConfigurationChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parámetros
- handler
- EventHandler<NSNotificationEventArgs>
Método que se invoca cuando se publica la notificación.
Devoluciones
Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)
Comentarios
Este método se puede usar para suscribirse ConfigurationChangeNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = NEVpnManager.Notifications.ObserveConfigurationChange ((notification) => {
Console.WriteLine ("Observed ConfigurationChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = NEVpnManager.Notifications.ObserveConfigurationChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed ConfigurationChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Se aplica a
ObserveConfigurationChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificación fuertemente tipada para la ConfigurationChangeNotification constante.
public static Foundation.NSObject ObserveConfigurationChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveConfigurationChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parámetros
- objectToObserve
- NSObject
Objeto que se va a observar.
- handler
- EventHandler<NSNotificationEventArgs>
Método que se invoca cuando se publica la notificación.
Devoluciones
Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)
Comentarios
Este método se puede usar para suscribirse ConfigurationChangeNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = NEVpnManager.Notifications.ObserveConfigurationChange ((notification) => {
Console.WriteLine ("Observed ConfigurationChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = NEVpnManager.Notifications.ObserveConfigurationChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed ConfigurationChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();