NEVpnManager.Notifications.ObserveConfigurationChange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveConfigurationChange(EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a ConfigurationChangeNotification constante. |
ObserveConfigurationChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a ConfigurationChangeNotification constante. |
ObserveConfigurationChange(EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a 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 a ser invocado quando a notificação é postada.
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar ConfigurationChangeNotification notificações.
// 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 ();
Aplica-se a
ObserveConfigurationChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a 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
O objeto a ser observado.
- handler
- EventHandler<NSNotificationEventArgs>
Método a ser invocado quando a notificação é postada.
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar ConfigurationChangeNotification notificações.
// 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 ();