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


AVCaptureSession.Notifications.ObserveWasInterrupted Метод

Определение

Перегрузки

ObserveWasInterrupted(EventHandler<NSNotificationEventArgs>)

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

ObserveWasInterrupted(NSObject, EventHandler<NSNotificationEventArgs>)

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

ObserveWasInterrupted(EventHandler<NSNotificationEventArgs>)

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

public static Foundation.NSObject ObserveWasInterrupted (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWasInterrupted : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

handler
EventHandler<NSNotificationEventArgs>

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

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

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

Комментарии

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

//
// Lambda style
//

// listening
notification = AVCaptureSession.Notifications.ObserveWasInterrupted ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);
}

void Setup ()
{
    notification = AVCaptureSession.Notifications.ObserveWasInterrupted (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

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

ObserveWasInterrupted(NSObject, EventHandler<NSNotificationEventArgs>)

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

public static Foundation.NSObject ObserveWasInterrupted (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWasInterrupted : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

objectToObserve
NSObject

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

handler
EventHandler<NSNotificationEventArgs>

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

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

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

Комментарии

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

// Listen to all notifications posted for any object
var token = AVCaptureSession.Notifications.ObserveWasInterrupted ((notification) => {
	Console.WriteLine ("Observed WasInterruptedNotification!");
};

// Listen to all notifications posted for a single object
var token = AVCaptureSession.Notifications.ObserveWasInterrupted (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed WasInterruptedNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

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