NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally 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
ObserveDidChangeExternally(EventHandler<NSUbiquitousKeyValueStoreChangeEventArgs>) |
Notificación fuertemente tipada para la DidChangeExternallyNotification constante. |
ObserveDidChangeExternally(NSObject, EventHandler<NSUbiquitousKeyValueStoreChangeEventArgs>) |
Notificación fuertemente tipada para la DidChangeExternallyNotification constante. |
ObserveDidChangeExternally(EventHandler<NSUbiquitousKeyValueStoreChangeEventArgs>)
Notificación fuertemente tipada para la DidChangeExternallyNotification constante.
public static Foundation.NSObject ObserveDidChangeExternally (EventHandler<Foundation.NSUbiquitousKeyValueStoreChangeEventArgs> handler);
static member ObserveDidChangeExternally : EventHandler<Foundation.NSUbiquitousKeyValueStoreChangeEventArgs> -> Foundation.NSObject
Parámetros
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
En el ejemplo siguiente se muestra cómo los desarrolladores pueden usar este método en su código:
//
// 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 ();
}
Se aplica a
ObserveDidChangeExternally(NSObject, EventHandler<NSUbiquitousKeyValueStoreChangeEventArgs>)
Notificación fuertemente tipada para la DidChangeExternallyNotification constante.
public static Foundation.NSObject ObserveDidChangeExternally (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSUbiquitousKeyValueStoreChangeEventArgs> handler);
static member ObserveDidChangeExternally : Foundation.NSObject * EventHandler<Foundation.NSUbiquitousKeyValueStoreChangeEventArgs> -> Foundation.NSObject
Parámetros
- objectToObserve
- NSObject
Objeto que se va a observar.
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 DidChangeExternallyNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally ((notification) => {
Console.WriteLine ("Observed DidChangeExternallyNotification!");
};
// Listen to all notifications posted for a single object
var token = NSUbiquitousKeyValueStore.Notifications.ObserveDidChangeExternally (objectToObserve, (notification) => {
Console.WriteLine ($"Observed DidChangeExternallyNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();