Freigeben über


NEVpnManager.Notifications.ObserveConfigurationChange Methode

Definition

Überlädt

ObserveConfigurationChange(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ConfigurationChangeNotification Konstante.

ObserveConfigurationChange(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ConfigurationChangeNotification Konstante.

ObserveConfigurationChange(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ConfigurationChangeNotification Konstante.

public static Foundation.NSObject ObserveConfigurationChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveConfigurationChange : 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 ConfigurationChangeNotification .

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

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

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

Gilt für:

ObserveConfigurationChange(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ConfigurationChangeNotification Konstante.

public static Foundation.NSObject ObserveConfigurationChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveConfigurationChange : 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 ConfigurationChangeNotification .

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

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

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

Gilt für: