Compartilhar via


AVRouteDetector.Notifications.ObserveMultipleRoutesDetectedDidChange Método

Definição

Sobrecargas

ObserveMultipleRoutesDetectedDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .

ObserveMultipleRoutesDetectedDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .

ObserveMultipleRoutesDetectedDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .

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

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

O manipulador que responde à notificação quando ela ocorre.

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 as notificações P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .

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

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

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

Aplica-se a

ObserveMultipleRoutesDetectedDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a constante P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .

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

Parâmetros

objectToObserve
NSObject

O objeto específico a ser observado.

handler
EventHandler<NSNotificationEventArgs>

O manipulador que responde à notificação quando ela ocorre.

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 as notificações P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChangeNotification .

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

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

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

Aplica-se a