Compartilhar via


NSUserDefaults.Notifications.ObserveCompletedInitialSync Método

Definição

Sobrecargas

ObserveCompletedInitialSync(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CompletedInitialSyncNotification constante.

ObserveCompletedInitialSync(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CompletedInitialSyncNotification constante.

ObserveCompletedInitialSync(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CompletedInitialSyncNotification constante.

public static Foundation.NSObject ObserveCompletedInitialSync (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveCompletedInitialSync : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar CompletedInitialSyncNotification notificações.

// Listen to all notifications posted for any object
var token = NSUserDefaults.Notifications.ObserveCompletedInitialSync ((notification) => {
	Console.WriteLine ("Observed CompletedInitialSyncNotification!");
};

// Listen to all notifications posted for a single object
var token = NSUserDefaults.Notifications.ObserveCompletedInitialSync (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed CompletedInitialSyncNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Aplica-se a

ObserveCompletedInitialSync(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a CompletedInitialSyncNotification constante.

public static Foundation.NSObject ObserveCompletedInitialSync (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveCompletedInitialSync : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parâmetros

objectToObserve
NSObject

O objeto a ser observado.

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar CompletedInitialSyncNotification notificações.

// Listen to all notifications posted for any object
var token = NSUserDefaults.Notifications.ObserveCompletedInitialSync ((notification) => {
	Console.WriteLine ("Observed CompletedInitialSyncNotification!");
};

// Listen to all notifications posted for a single object
var token = NSUserDefaults.Notifications.ObserveCompletedInitialSync (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed CompletedInitialSyncNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Aplica-se a