NSManagedObjectContext.Notifications.ObserveWillSave Méthode
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.
Surcharges
ObserveWillSave(EventHandler<NSNotificationEventArgs>) |
Notification fortement typée pour la WillSaveNotification constante. |
ObserveWillSave(NSObject, EventHandler<NSNotificationEventArgs>) |
Notification fortement typée pour la WillSaveNotification constante. |
ObserveWillSave(EventHandler<NSNotificationEventArgs>)
Notification fortement typée pour la WillSaveNotification constante.
public static Foundation.NSObject ObserveWillSave (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillSave : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Paramètres
- handler
- EventHandler<NSNotificationEventArgs>
Méthode à appeler lorsque la notification est publiée.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
L’exemple suivant montre comment utiliser cette méthode dans votre code
//
// Lambda style
//
// listening
notification = NSManagedObjectContext.Notifications.ObserveWillSave ((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 = NSManagedObjectContext.Notifications.ObserveWillSave (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
S’applique à
ObserveWillSave(NSObject, EventHandler<NSNotificationEventArgs>)
Notification fortement typée pour la WillSaveNotification constante.
public static Foundation.NSObject ObserveWillSave (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillSave : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Paramètres
- objectToObserve
- NSObject
Objet à observer.
- handler
- EventHandler<NSNotificationEventArgs>
Méthode à appeler lorsque la notification est publiée.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
Cette méthode peut être utilisée pour WillSaveNotification s’abonner aux notifications.
// Listen to all notifications posted for any object
var token = NSManagedObjectContext.Notifications.ObserveWillSave ((notification) => {
Console.WriteLine ("Observed WillSaveNotification!");
};
// Listen to all notifications posted for a single object
var token = NSManagedObjectContext.Notifications.ObserveWillSave (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillSaveNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();