NSUbiquitousKeyValueStore.DidChangeExternallyNotification Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Constante de notification pour DidChangeExternally
[Foundation.Advice("Use NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally helper method instead.")]
[Foundation.Field("NSUbiquitousKeyValueStoreDidChangeExternallyNotification", "Foundation")]
public static Foundation.NSString DidChangeExternallyNotification { get; }
member this.DidChangeExternallyNotification : 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.
Pour s’abonner à cette notification, les développeurs peuvent utiliser la méthode pratique NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally qui offre un accès fortement typé aux paramètres de la notification.
L’exemple suivant montre comment utiliser la classe Notifications fortement typée pour extraire les estimations des propriétés disponibles dans la notification :
//
// Lambda style
//
// listening
notification = NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("ChangedKeys", args.ChangedKeys);
Console.WriteLine ("ChangeReason", args.ChangeReason);
});
// To stop listening:
notification.Dispose ();
//
// Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSUbiquitousKeyValueStoreChangeEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("ChangedKeys", args.ChangedKeys);
Console.WriteLine ("ChangeReason", args.ChangeReason);
}
void Setup ()
{
notification = NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
L’exemple suivant montre comment utiliser la notification avec l’API DefaultCenter :
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
NSUbiquitousKeyValueStore.DidChangeExternallyNotification, (notification) => {Console.WriteLine ("Received the notification NSUbiquitousKeyValueStore", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification NSUbiquitousKeyValueStore", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (NSUbiquitousKeyValueStore.DidChangeExternallyNotification, Callback);
}