AVAssetTrack.Notifications.ObserveSegmentsDidChange Método

Definição

Sobrecargas

ObserveSegmentsDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a SegmentsDidChangeNotification constante.

ObserveSegmentsDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a SegmentsDidChangeNotification constante.

ObserveSegmentsDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a SegmentsDidChangeNotification constante.

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

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

O manipulador que responde à notificação quando ela ocorre.

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 SegmentsDidChangeNotification notificações.

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

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

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

Aplica-se a

ObserveSegmentsDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a SegmentsDidChangeNotification constante.

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

Parâmetros

objectToObserve
NSObject

O objeto específico a ser observado.

handler
EventHandler<NSNotificationEventArgs>

O manipulador que responde à notificação quando ela ocorre.

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 SegmentsDidChangeNotification notificações.

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

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

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

Aplica-se a