AVCaptureSession.Notifications.ObserveRuntimeError 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
ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>) |
Notificación fuertemente tipada para la RuntimeErrorNotification constante. |
ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>) |
Notificación fuertemente tipada para la RuntimeErrorNotification constante. |
ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)
Notificación fuertemente tipada para la RuntimeErrorNotification constante.
public static Foundation.NSObject ObserveRuntimeError (EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> handler);
static member ObserveRuntimeError : EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> -> Foundation.NSObject
Parámetros
Método para invocar cuando se publica la notificación.
Devoluciones
Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo 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 = 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 ();
}
Se aplica a
ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)
Notificación fuertemente tipada para la 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
Objeto específico que se va a observar.
Controlador que responde a la notificación cuando se produce.
Devoluciones
Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)
Comentarios
Este método se puede usar para suscribirse RuntimeErrorNotification a las notificaciones.
// 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 ();