AVCaptureSession.Notifications.ObserveRuntimeError 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
ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>) |
Notificação fortemente tipada para a RuntimeErrorNotification constante. |
ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>) |
Notificação fortemente tipada para a RuntimeErrorNotification constante. |
ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)
Notificação fortemente tipada para a RuntimeErrorNotification constante.
public static Foundation.NSObject ObserveRuntimeError (EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> handler);
static member ObserveRuntimeError : EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> -> 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 = AVCaptureSession.Notifications.ObserveRuntimeError ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("Error", args.Error);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, AVFoundation.AVCaptureSessionRuntimeErrorEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("Error", args.Error);
}
void Setup ()
{
notification = AVCaptureSession.Notifications.ObserveRuntimeError (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Aplica-se a
ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)
Notificação fortemente tipada para a RuntimeErrorNotification constante.
public static Foundation.NSObject ObserveRuntimeError (Foundation.NSObject objectToObserve, EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> handler);
static member ObserveRuntimeError : Foundation.NSObject * EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> -> Foundation.NSObject
Parâmetros
- objectToObserve
- NSObject
O objeto específico a ser observado.
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 RuntimeErrorNotification notificações.
// Listen to all notifications posted for any object
var token = AVCaptureSession.Notifications.ObserveRuntimeError ((notification) => {
Console.WriteLine ("Observed RuntimeErrorNotification!");
};
// Listen to all notifications posted for a single object
var token = AVCaptureSession.Notifications.ObserveRuntimeError (objectToObserve, (notification) => {
Console.WriteLine ($"Observed RuntimeErrorNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();