AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically 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
ObserveAudioRendererWasFlushedAutomatically(EventHandler<AudioRendererWasFlushedAutomaticallyEventArgs>) |
Notificação fortemente tipada para a AudioRendererWasFlushedAutomaticallyNotification constante. |
ObserveAudioRendererWasFlushedAutomatically(NSObject, EventHandler<AudioRendererWasFlushedAutomaticallyEventArgs>) |
Notificação fortemente tipada para a AudioRendererWasFlushedAutomaticallyNotification constante. |
ObserveAudioRendererWasFlushedAutomatically(EventHandler<AudioRendererWasFlushedAutomaticallyEventArgs>)
Notificação fortemente tipada para a AudioRendererWasFlushedAutomaticallyNotification constante.
public static Foundation.NSObject ObserveAudioRendererWasFlushedAutomatically (EventHandler<AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs> handler);
static member ObserveAudioRendererWasFlushedAutomatically : EventHandler<AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs> -> Foundation.NSObject
Parâmetros
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
O exemplo a seguir mostra como os desenvolvedores podem usar esse método em seu código:
//
// Lambda style
//
// listening
notification = AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("_AudioRendererFlushTime", args._AudioRendererFlushTime);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("_AudioRendererFlushTime", args._AudioRendererFlushTime);
}
void Setup ()
{
notification = AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Aplica-se a
ObserveAudioRendererWasFlushedAutomatically(NSObject, EventHandler<AudioRendererWasFlushedAutomaticallyEventArgs>)
Notificação fortemente tipada para a AudioRendererWasFlushedAutomaticallyNotification constante.
public static Foundation.NSObject ObserveAudioRendererWasFlushedAutomatically (Foundation.NSObject objectToObserve, EventHandler<AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs> handler);
static member ObserveAudioRendererWasFlushedAutomatically : Foundation.NSObject * EventHandler<AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs> -> Foundation.NSObject
Parâmetros
- objectToObserve
- NSObject
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 AudioRendererWasFlushedAutomaticallyNotification notificações.
// Listen to all notifications posted for any object
var token = AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically ((notification) => {
Console.WriteLine ("Observed AudioRendererWasFlushedAutomaticallyNotification!");
};
// Listen to all notifications posted for a single object
var token = AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically (objectToObserve, (notification) => {
Console.WriteLine ($"Observed AudioRendererWasFlushedAutomaticallyNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();