Compartir a través de


NEDnsProxyManager.Notifications.ObserveProxyConfigurationDidChange Método

Definición

Sobrecargas

ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la ProxyConfigurationDidChangeNotification constante.

ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la ProxyConfigurationDidChangeNotification constante.

ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la ProxyConfigurationDidChangeNotification constante.

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

Parámetros

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse ProxyConfigurationDidChangeNotification a las notificaciones.

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

Se aplica a

ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la ProxyConfigurationDidChangeNotification constante.

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

Parámetros

objectToObserve
NSObject

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse ProxyConfigurationDidChangeNotification a las notificaciones.

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

Se aplica a