NEDnsProxyManager.Notifications.ObserveProxyConfigurationDidChange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a ProxyConfigurationDidChangeNotification constante. |
ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a ProxyConfigurationDidChangeNotification constante. |
ObserveProxyConfigurationDidChange(EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a ProxyConfigurationDidChangeNotification constante.
public static Foundation.NSObject ObserveProxyConfigurationDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveProxyConfigurationDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parâmetros
- handler
- EventHandler<NSNotificationEventArgs>
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar ProxyConfigurationDidChangeNotification notificações.
// 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 ();
Aplica-se a
ObserveProxyConfigurationDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a 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
- handler
- EventHandler<NSNotificationEventArgs>
Retornos
Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)
Comentários
Esse método pode ser usado para assinar ProxyConfigurationDidChangeNotification notificações.
// 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 ();