Partager via


NEVpnManager.ConfigurationChangeNotification Propriété

Définition

Constante de notification pour ConfigurationChange

[Foundation.Advice("Use NEVpnManager.Notifications.ObserveConfigurationChange helper method instead.")]
[Foundation.Field("NEVPNConfigurationChangeNotification", "NetworkExtension")]
public static Foundation.NSString ConfigurationChangeNotification { get; }
member this.ConfigurationChangeNotification : Foundation.NSString

Valeur de propriété

La constante NSString doit être utilisée comme jeton pour NSNotificationCenter.

Attributs

Remarques

Cette constante peut être utilisée avec pour NSNotificationCenter inscrire un écouteur pour cette notification. Il s’agit d’un NSString au lieu d’une chaîne, car ces valeurs peuvent être utilisées comme jetons dans certaines bibliothèques natives au lieu d’être utilisées uniquement pour leur contenu de chaîne réel. Le paramètre « notification » du rappel contient des informations supplémentaires spécifiques au type de notification.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        NEVpnManager.ConfigurationChangeNotification, (notification) => {Console.WriteLine ("Received the notification NEVpnManager", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification NEVpnManager", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (NEVpnManager.ConfigurationChangeNotification, Callback);
}

S’applique à