Condividi tramite


NEDnsProxyManager.Notifications.ObserveProxyConfigurationDidChange Metodo

Definizione

Overload

ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)

Notifica fortemente tipizzata per la ProxyConfigurationDidChangeNotification costante.

ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notifica fortemente tipizzata per la ProxyConfigurationDidChangeNotification costante.

ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)

Notifica fortemente tipizzata per la ProxyConfigurationDidChangeNotification costante.

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

Parametri

Restituisce

Oggetto token che può essere usato per arrestare la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)

Commenti

Questo metodo può essere usato per sottoscrivere ProxyConfigurationDidChangeNotification le notifiche.

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

Si applica a

ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notifica fortemente tipizzata per la ProxyConfigurationDidChangeNotification costante.

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

Parametri

objectToObserve
NSObject

Restituisce

Oggetto token che può essere usato per arrestare la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)

Commenti

Questo metodo può essere usato per sottoscrivere ProxyConfigurationDidChangeNotification le notifiche.

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

Si applica a