Compartir a través de


NSMetadataQuery.Notifications.ObserveDidStartGathering Método

Definición

Sobrecargas

ObserveDidStartGathering(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidStartGatheringNotification constante.

ObserveDidStartGathering(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidStartGatheringNotification constante.

ObserveDidStartGathering(EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidStartGatheringNotification constante.

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

Parámetros

handler
EventHandler<NSNotificationEventArgs>

Método que se invoca cuando se publica la notificación.

Devoluciones

Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)

Comentarios

En el ejemplo siguiente se muestra cómo puede usar este método en el código.

//
// Lambda style
//

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

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

Se aplica a

ObserveDidStartGathering(NSObject, EventHandler<NSNotificationEventArgs>)

Notificación fuertemente tipada para la DidStartGatheringNotification constante.

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

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<NSNotificationEventArgs>

Método que se invoca cuando se publica la notificación.

Devoluciones

Objeto token que se puede usar para dejar de recibir notificaciones mediante su eliminación o su paso a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse DidStartGatheringNotification a las notificaciones.

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

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

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

Se aplica a