Freigeben über


AVCaptureSession.Notifications.ObserveWasInterrupted Methode

Definition

Überlädt

ObserveWasInterrupted(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die WasInterruptedNotification Konstante.

ObserveWasInterrupted(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die WasInterruptedNotification Konstante.

ObserveWasInterrupted(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die WasInterruptedNotification Konstante.

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

Parameter

handler
EventHandler<NSNotificationEventArgs>

Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.

Gibt zurück

Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder veräußert oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)

Hinweise

Das folgende Beispiel zeigt, wie Sie diese Methode in Ihrem Code verwenden können.

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

Gilt für:

ObserveWasInterrupted(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die WasInterruptedNotification Konstante.

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

Parameter

objectToObserve
NSObject

Das spezifische zu beobachtende Objekt.

handler
EventHandler<NSNotificationEventArgs>

Der Handler, der auf die Benachrichtigung reagiert, wenn sie auftritt.

Gibt zurück

Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder veräußert oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)

Hinweise

Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren 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 ();

Gilt für: