Freigeben über


NSExtensionContext.Notifications.ObserveHostDidEnterBackground Methode

Definition

Überlädt

ObserveHostDidEnterBackground(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostDidEnterBackgroundNotification Konstante.

ObserveHostDidEnterBackground(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostDidEnterBackgroundNotification Konstante.

ObserveHostDidEnterBackground(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostDidEnterBackgroundNotification Konstante.

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

Parameter

handler
EventHandler<NSNotificationEventArgs>

Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.

Gibt zurück

Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)

Hinweise

Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren HostDidEnterBackgroundNotification .

// 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 ();

Gilt für:

ObserveHostDidEnterBackground(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostDidEnterBackgroundNotification Konstante.

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

Parameter

objectToObserve
NSObject

Das zu beobachtende Objekt.

handler
EventHandler<NSNotificationEventArgs>

Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.

Gibt zurück

Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)

Hinweise

Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren HostDidEnterBackgroundNotification .

// 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 ();

Gilt für: