UIApplication.Notifications.ObserveBackgroundRefreshStatusDidChange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveBackgroundRefreshStatusDidChange(EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a BackgroundRefreshStatusDidChangeNotification constante. |
ObserveBackgroundRefreshStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a BackgroundRefreshStatusDidChangeNotification constante. |
ObserveBackgroundRefreshStatusDidChange(EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a BackgroundRefreshStatusDidChangeNotification constante.
public static Foundation.NSObject ObserveBackgroundRefreshStatusDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveBackgroundRefreshStatusDidChange : 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
O exemplo a seguir mostra como você pode usar esse método em seu código
//
// Lambda style
//
// listening
notification = UIApplication.Notifications.ObserveBackgroundRefreshStatusDidChange ((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 = UIApplication.Notifications.ObserveBackgroundRefreshStatusDidChange (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Aplica-se a
ObserveBackgroundRefreshStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a BackgroundRefreshStatusDidChangeNotification constante.
public static Foundation.NSObject ObserveBackgroundRefreshStatusDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveBackgroundRefreshStatusDidChange : 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 BackgroundRefreshStatusDidChangeNotification notificações.
// Listen to all notifications posted for any object
var token = UIApplication.Notifications.ObserveBackgroundRefreshStatusDidChange ((notification) => {
Console.WriteLine ("Observed BackgroundRefreshStatusDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = UIApplication.Notifications.ObserveBackgroundRefreshStatusDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed BackgroundRefreshStatusDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();