Compartilhar via


AVAsset.Notifications.ObserveWasDefragmented Método

Definição

Sobrecargas

ObserveWasDefragmented(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a WasDefragmentedNotification constante.

ObserveWasDefragmented(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a WasDefragmentedNotification constante.

ObserveWasDefragmented(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a WasDefragmentedNotification constante.

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

Parâmetros

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar WasDefragmentedNotification notificações.

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

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

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

Aplica-se a

ObserveWasDefragmented(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a WasDefragmentedNotification constante.

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

Parâmetros

objectToObserve
NSObject

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar WasDefragmentedNotification notificações.

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

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

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

Aplica-se a