CNContactStore.Notifications.ObserveNotificationDidChange Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ObserveNotificationDidChange(EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die P:Contacts.CNContactStore.NotificationDidChangeNotification-Konstante . |
ObserveNotificationDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die P:Contacts.CNContactStore.NotificationDidChangeNotification-Konstante . |
ObserveNotificationDidChange(EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die P:Contacts.CNContactStore.NotificationDidChangeNotification-Konstante .
public static Foundation.NSObject ObserveNotificationDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveNotificationDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- handler
- EventHandler<NSNotificationEventArgs>
Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um P:Contacts.CNContactStore.NotificationDidChangeNotification-Benachrichtigungen zu abonnieren.
// Listen to all notifications posted for any object
var token = CNContactStore.Notifications.ObserveNotificationDidChange ((notification) => {
Console.WriteLine ("Observed NotificationDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = CNContactStore.Notifications.ObserveNotificationDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed NotificationDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Gilt für:
ObserveNotificationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die P:Contacts.CNContactStore.NotificationDidChangeNotification-Konstante .
public static Foundation.NSObject ObserveNotificationDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveNotificationDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- objectToObserve
- NSObject
Das zu beobachtende Objekt.
- handler
- EventHandler<NSNotificationEventArgs>
Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um P:Contacts.CNContactStore.NotificationDidChangeNotification-Benachrichtigungen zu abonnieren.
// Listen to all notifications posted for any object
var token = CNContactStore.Notifications.ObserveNotificationDidChange ((notification) => {
Console.WriteLine ("Observed NotificationDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = CNContactStore.Notifications.ObserveNotificationDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed NotificationDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();