Freigeben über


MPMoviePlayerController.Notifications.ObserveNaturalSizeAvailable Methode

Definition

Überlädt

ObserveNaturalSizeAvailable(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die NaturalSizeAvailableNotification Konstante.

ObserveNaturalSizeAvailable(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die NaturalSizeAvailableNotification Konstante.

ObserveNaturalSizeAvailable(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die NaturalSizeAvailableNotification Konstante.

public static Foundation.NSObject ObserveNaturalSizeAvailable (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveNaturalSizeAvailable : 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 = MPMoviePlayerController.Notifications.ObserveNaturalSizeAvailable ((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 = MPMoviePlayerController.Notifications.ObserveNaturalSizeAvailable (Callback);
}

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

Gilt für:

ObserveNaturalSizeAvailable(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die NaturalSizeAvailableNotification Konstante.

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

Parameter

objectToObserve
NSObject

Das zu beobachtende Objekt.

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

Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren NaturalSizeAvailableNotification .

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

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

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

Gilt für: