Freigeben über


NSExtensionContext.Notifications.ObserveHostWillEnterForeground Methode

Definition

Überlädt

ObserveHostWillEnterForeground(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostWillEnterForegroundNotification Konstante.

ObserveHostWillEnterForeground(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostWillEnterForegroundNotification Konstante.

ObserveHostWillEnterForeground(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostWillEnterForegroundNotification Konstante.

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

Parameter

handler
EventHandler<NSNotificationEventArgs>

Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.

Gibt zurück

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

Hinweise

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

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

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

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

Gilt für:

ObserveHostWillEnterForeground(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die HostWillEnterForegroundNotification Konstante.

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

Parameter

objectToObserve
NSObject

Das zu beobachtende Objekt.

handler
EventHandler<NSNotificationEventArgs>

Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.

Gibt zurück

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

Hinweise

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

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

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

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

Gilt für: