NSFileManager.UbiquityIdentityDidChangeNotification Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Costante di notifica per UbiquityIdentityDidChange
[Foundation.Advice("Use NSFileManager.Notifications.ObserveUbiquityIdentityDidChange helper method instead.")]
[Foundation.Field("NSUbiquityIdentityDidChangeNotification", "Foundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString UbiquityIdentityDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
[Foundation.Advice("Use NSFileManager.Notifications.ObserveUbiquityIdentityDidChange helper method instead.")]
[Foundation.Field("NSUbiquityIdentityDidChangeNotification", "Foundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 8, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString UbiquityIdentityDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 8, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.UbiquityIdentityDidChangeNotification : Foundation.NSString
Valore della proprietà
La costante NSString deve essere usata come token per NSNotificationCenter.
- Attributi
Commenti
Questa costante può essere usata con per NSNotificationCenter registrare un listener per questa notifica. Si tratta di una stringa NSString anziché di una stringa, perché questi valori possono essere usati come token in alcune librerie native anziché essere usati esclusivamente per il relativo contenuto stringa effettivo. Il parametro 'notification' per il callback contiene informazioni aggiuntive specifiche del tipo di notifica.
Se si vuole sottoscrivere questa notifica, è possibile usare il NSFileManager.Notificationsmetodo .ObserveUbiquityIdentityDidChange che offre accesso fortemente tipizzato ai parametri della notifica.
Nell'esempio seguente viene illustrato come usare la classe Notifications fortemente tipizzata per escludere le ipotesi dalle proprietà disponibili nella notifica:
//
// Lambda style
//
// listening
notification = NSFileManager.Notifications.ObserveUbiquityIdentityDidChange ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
});
// To stop listening:
notification.Dispose ();
//
// Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
}
void Setup ()
{
notification = NSFileManager.Notifications.ObserveUbiquityIdentityDidChange (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
L'esempio seguente illustra come usare la notifica con l'API DefaultCenter:
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
NSFileManager.UbiquityIdentityDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification NSFileManager", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification NSFileManager", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (NSFileManager.UbiquityIdentityDidChangeNotification, Callback);
}