AVCaptureSession.Notifications.ObserveRuntimeError Méthode

Définition

Surcharges

ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Notification fortement typée pour la RuntimeErrorNotification constante.

ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Notification fortement typée pour la RuntimeErrorNotification constante.

ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Notification fortement typée pour la RuntimeErrorNotification constante.

public static Foundation.NSObject ObserveRuntimeError (EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> handler);
static member ObserveRuntimeError : EventHandler<AVFoundation.AVCaptureSessionRuntimeErrorEventArgs> -> Foundation.NSObject

Paramètres

handler
EventHandler<AVCaptureSessionRuntimeErrorEventArgs>

Méthode à appeler lorsque la notification est publiée.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

L’exemple suivant montre comment les développeurs peuvent utiliser cette méthode dans leur code :

//
// 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 ();
}

S’applique à

ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Notification fortement typée pour 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

Paramètres

objectToObserve
NSObject

Objet spécifique à observer.

handler
EventHandler<AVCaptureSessionRuntimeErrorEventArgs>

Gestionnaire qui répond à la notification lorsqu’elle se produit.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

Cette méthode peut être utilisée pour RuntimeErrorNotification s’abonner aux notifications.

// 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 ();

S’applique à