Compartilhar via


ALAssetsLibrary.Notifications.ObserveChanged Método

Definição

Sobrecargas

ObserveChanged(EventHandler<ALAssetLibraryChangedEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

ObserveChanged(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

ObserveChanged(NSObject, EventHandler<ALAssetLibraryChangedEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

ObserveChanged(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

ObserveChanged(EventHandler<ALAssetLibraryChangedEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

public static Foundation.NSObject ObserveChanged (EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> handler);
static member ObserveChanged : EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> -> Foundation.NSObject

Parâmetros

handler
EventHandler<ALAssetLibraryChangedEventArgs>

Método a ser invocado quando a notificação é postada.

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

O exemplo a seguir mostra como você pode usar esse método em seu código

//
// Lambda style
//

// listening
notification = ALAssetsLibrary.Notifications.ObserveChanged ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("UpdatedAssets", args.UpdatedAssets);
    Console.WriteLine ("InsertedAssetGroups", args.InsertedAssetGroups);
    Console.WriteLine ("UpdatedAssetGroups", args.UpdatedAssetGroups);
    Console.WriteLine ("DeletedAssetGroupsKey", args.DeletedAssetGroupsKey);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, AssetsLibrary.ALAssetLibraryChangedEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("UpdatedAssets", args.UpdatedAssets);
    Console.WriteLine ("InsertedAssetGroups", args.InsertedAssetGroups);
    Console.WriteLine ("UpdatedAssetGroups", args.UpdatedAssetGroups);
    Console.WriteLine ("DeletedAssetGroupsKey", args.DeletedAssetGroupsKey);
}

void Setup ()
{
    notification = ALAssetsLibrary.Notifications.ObserveChanged (Callback);
}

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

Aplica-se a

ObserveChanged(EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

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

Parâmetros

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

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

O exemplo a seguir mostra como você pode usar esse método em seu código

//
// Lambda style
//

// listening
notification = ALAssetsLibrary.Notifications.ObserveChanged ((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 = ALAssetsLibrary.Notifications.ObserveChanged (Callback);
}

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

Aplica-se a

ObserveChanged(NSObject, EventHandler<ALAssetLibraryChangedEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

public static Foundation.NSObject ObserveChanged (Foundation.NSObject objectToObserve, EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> handler);
static member ObserveChanged : Foundation.NSObject * EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> -> Foundation.NSObject

Parâmetros

objectToObserve
NSObject

O objeto a ser observado.

handler
EventHandler<ALAssetLibraryChangedEventArgs>

Método a ser invocado quando a notificação é postada.

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

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

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

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

Aplica-se a

ObserveChanged(NSObject, EventHandler<NSNotificationEventArgs>)

Notificação fortemente tipada para a ChangedNotification constante.

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

Parâmetros

objectToObserve
NSObject

O objeto a ser observado.

handler
EventHandler<NSNotificationEventArgs>

Método a ser invocado quando a notificação é postada.

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

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

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

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

Aplica-se a