AVAudioSession.Notifications.ObserveInterruption Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ObserveInterruption(EventHandler<AVAudioSessionInterruptionEventArgs>) |
Notificación fuertemente tipada para la InterruptionNotification constante. |
ObserveInterruption(NSObject, EventHandler<AVAudioSessionInterruptionEventArgs>) |
Notificación fuertemente tipada para la InterruptionNotification constante. |
ObserveInterruption(EventHandler<AVAudioSessionInterruptionEventArgs>)
Notificación fuertemente tipada para la InterruptionNotification constante.
public static Foundation.NSObject ObserveInterruption (EventHandler<AVFoundation.AVAudioSessionInterruptionEventArgs> handler);
static member ObserveInterruption : EventHandler<AVFoundation.AVAudioSessionInterruptionEventArgs> -> Foundation.NSObject
Parámetros
Método que se invoca cuando se publica la notificación.
Devoluciones
Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)
Comentarios
En el ejemplo siguiente se muestra cómo los desarrolladores pueden usar este método en su código:
//
// Lambda style
//
// listening
notification = AVAudioSession.Notifications.ObserveInterruption ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("InterruptionType", args.InterruptionType);
Console.WriteLine ("Option", args.Option);
Console.WriteLine ("WasSuspended", args.WasSuspended);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, AVFoundation.AVAudioSessionInterruptionEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("InterruptionType", args.InterruptionType);
Console.WriteLine ("Option", args.Option);
Console.WriteLine ("WasSuspended", args.WasSuspended);
}
void Setup ()
{
notification = AVAudioSession.Notifications.ObserveInterruption (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Se aplica a
ObserveInterruption(NSObject, EventHandler<AVAudioSessionInterruptionEventArgs>)
Notificación fuertemente tipada para la InterruptionNotification constante.
public static Foundation.NSObject ObserveInterruption (Foundation.NSObject objectToObserve, EventHandler<AVFoundation.AVAudioSessionInterruptionEventArgs> handler);
static member ObserveInterruption : Foundation.NSObject * EventHandler<AVFoundation.AVAudioSessionInterruptionEventArgs> -> Foundation.NSObject
Parámetros
- objectToObserve
- NSObject
Objeto específico que se va a observar.
Controlador que responde a la notificación cuando se produce.
Devoluciones
Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)
Comentarios
Este método se puede usar para suscribirse InterruptionNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = AVAudioSession.Notifications.ObserveInterruption ((notification) => {
Console.WriteLine ("Observed InterruptionNotification!");
};
// Listen to all notifications posted for a single object
var token = AVAudioSession.Notifications.ObserveInterruption (objectToObserve, (notification) => {
Console.WriteLine ($"Observed InterruptionNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();