Compartilhar via


NSExtensionContext.Notifications.ObserveHostDidEnterBackground Método

Definição

Sobrecargas

ObserveHostDidEnterBackground(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a HostDidEnterBackgroundNotification constante.

ObserveHostDidEnterBackground(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a HostDidEnterBackgroundNotification constante.

ObserveHostDidEnterBackground(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a HostDidEnterBackgroundNotification constante.

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

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

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

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

Aplica-se a

ObserveHostDidEnterBackground(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a HostDidEnterBackgroundNotification constante.

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

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

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

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

Aplica-se a