Compartilhar via


NSUserDefaults.Notifications.ObserveDidChange Método

Definição

Sobrecargas

ObserveDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidChangeNotification constante.

ObserveDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidChangeNotification constante.

ObserveDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidChangeNotification constante.

public static Foundation.NSObject ObserveDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidChange : 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 DidChangeNotification notificações.

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

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

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

Aplica-se a

ObserveDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a DidChangeNotification constante.

public static Foundation.NSObject ObserveDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidChange : 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 DidChangeNotification notificações.

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

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

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

Aplica-se a