Freigeben über


NEDnsProxyManager.Notifications.ObserveProxyConfigurationDidChange Methode

Definition

Überlädt

ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ProxyConfigurationDidChangeNotification Konstante.

ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ProxyConfigurationDidChangeNotification Konstante.

ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ProxyConfigurationDidChangeNotification Konstante.

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

Parameter

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 ProxyConfigurationDidChangeNotification .

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

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

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

Gilt für:

ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die ProxyConfigurationDidChangeNotification Konstante.

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

Parameter

objectToObserve
NSObject

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 ProxyConfigurationDidChangeNotification .

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

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

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

Gilt für: