NEDnsProxyManager.Notifications.ObserveProxyConfigurationDidChange Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ü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
- handler
- EventHandler<NSNotificationEventArgs>
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
- handler
- EventHandler<NSNotificationEventArgs>
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 ();