Compartilhar via


AVAssetTrack.Notifications.ObserveTrackAssociationsDidChange Método

Definição

Sobrecargas

ObserveTrackAssociationsDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a TrackAssociationsDidChangeNotification constante.

ObserveTrackAssociationsDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a TrackAssociationsDidChangeNotification constante.

ObserveTrackAssociationsDidChange(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a TrackAssociationsDidChangeNotification constante.

public static Foundation.NSObject ObserveTrackAssociationsDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveTrackAssociationsDidChange : 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 TrackAssociationsDidChangeNotification notificações.

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

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

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

Aplica-se a

ObserveTrackAssociationsDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a TrackAssociationsDidChangeNotification constante.

public static Foundation.NSObject ObserveTrackAssociationsDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveTrackAssociationsDidChange : 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 TrackAssociationsDidChangeNotification notificações.

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

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

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

Aplica-se a