AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ObserveMediaSelectionGroupsDidChange(EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a MediaSelectionGroupsDidChangeNotification constante. |
ObserveMediaSelectionGroupsDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificação fortemente tipada para a MediaSelectionGroupsDidChangeNotification constante. |
ObserveMediaSelectionGroupsDidChange(EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a MediaSelectionGroupsDidChangeNotification constante.
public static Foundation.NSObject ObserveMediaSelectionGroupsDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveMediaSelectionGroupsDidChange : 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 MediaSelectionGroupsDidChangeNotification notificações.
// Listen to all notifications posted for any object
var token = AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange ((notification) => {
Console.WriteLine ("Observed MediaSelectionGroupsDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed MediaSelectionGroupsDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Aplica-se a
ObserveMediaSelectionGroupsDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Notificação fortemente tipada para a MediaSelectionGroupsDidChangeNotification constante.
public static Foundation.NSObject ObserveMediaSelectionGroupsDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveMediaSelectionGroupsDidChange : 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 MediaSelectionGroupsDidChangeNotification notificações.
// Listen to all notifications posted for any object
var token = AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange ((notification) => {
Console.WriteLine ("Observed MediaSelectionGroupsDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed MediaSelectionGroupsDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();