CKContainer.Notifications.ObserveAccountChanged Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ObserveAccountChanged(EventHandler<NSNotificationEventArgs>) |
Strongly typed notification for the AccountChangedNotification constant. |
ObserveAccountChanged(NSObject, EventHandler<NSNotificationEventArgs>) |
Strongly typed notification for the AccountChangedNotification constant. |
ObserveAccountChanged(EventHandler<NSNotificationEventArgs>)
Strongly typed notification for the AccountChangedNotification constant.
public static Foundation.NSObject ObserveAccountChanged (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveAccountChanged : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameters
- handler
- EventHandler<NSNotificationEventArgs>
Method to invoke when the notification is posted.
Returns
Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)
Remarks
This method can be used to subscribe for AccountChangedNotification notifications.
// Listen to all notifications posted for any object
var token = CKContainer.Notifications.ObserveAccountChanged ((notification) => {
Console.WriteLine ("Observed AccountChangedNotification!");
};
// Listen to all notifications posted for a single object
var token = CKContainer.Notifications.ObserveAccountChanged (objectToObserve, (notification) => {
Console.WriteLine ($"Observed AccountChangedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Applies to
ObserveAccountChanged(NSObject, EventHandler<NSNotificationEventArgs>)
Strongly typed notification for the AccountChangedNotification constant.
public static Foundation.NSObject ObserveAccountChanged (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveAccountChanged : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameters
- objectToObserve
- NSObject
The object to observe.
- handler
- EventHandler<NSNotificationEventArgs>
Method to invoke when the notification is posted.
Returns
Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)
Remarks
This method can be used to subscribe for AccountChangedNotification notifications.
// Listen to all notifications posted for any object
var token = CKContainer.Notifications.ObserveAccountChanged ((notification) => {
Console.WriteLine ("Observed AccountChangedNotification!");
};
// Listen to all notifications posted for a single object
var token = CKContainer.Notifications.ObserveAccountChanged (objectToObserve, (notification) => {
Console.WriteLine ($"Observed AccountChangedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();