Поделиться через


AVCaptureSession.Notifications.ObserveRuntimeError Метод

Определение

Перегрузки

ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Строго типизированное уведомление для константы RuntimeErrorNotification .

ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Строго типизированное уведомление для константы RuntimeErrorNotification .

ObserveRuntimeError(EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Строго типизированное уведомление для константы RuntimeErrorNotification .

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

Параметры

handler
EventHandler<AVCaptureSessionRuntimeErrorEventArgs>

Метод, вызываемый при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

В следующем примере показано, как разработчики могут использовать этот метод в своем коде:

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

Применяется к

ObserveRuntimeError(NSObject, EventHandler<AVCaptureSessionRuntimeErrorEventArgs>)

Строго типизированное уведомление для константы RuntimeErrorNotification .

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

Параметры

objectToObserve
NSObject

Конкретный объект для наблюдения.

handler
EventHandler<AVCaptureSessionRuntimeErrorEventArgs>

Обработчик, который реагирует на уведомление при его возникновении.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на RuntimeErrorNotification уведомления.

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

Применяется к