Compartilhar via


UIImage.Notifications.ObserveAssistiveTechnologyKey Método

Definição

Sobrecargas

ObserveAssistiveTechnologyKey(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:UIKit.UIImage.AssistiveTechnologyKeyNotification .

ObserveAssistiveTechnologyKey(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:UIKit.UIImage.AssistiveTechnologyKeyNotification .

ObserveAssistiveTechnologyKey(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:UIKit.UIImage.AssistiveTechnologyKeyNotification .

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

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

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 notificações P:UIKit.UIImage.AssistiveTechnologyKeyNotification .

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

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

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

Aplica-se a

ObserveAssistiveTechnologyKey(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:UIKit.UIImage.AssistiveTechnologyKeyNotification .

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

Parâmetros

objectToObserve
NSObject

O objeto a ser observado.

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

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 notificações P:UIKit.UIImage.AssistiveTechnologyKeyNotification .

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

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

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

Aplica-se a