NSMetadataQuery.Notifications.ObserveDidStartGathering Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ObserveDidStartGathering(EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die DidStartGatheringNotification Konstante. |
ObserveDidStartGathering(NSObject, EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die DidStartGatheringNotification Konstante. |
ObserveDidStartGathering(EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die DidStartGatheringNotification Konstante.
public static Foundation.NSObject ObserveDidStartGathering (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidStartGathering : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- handler
- EventHandler<NSNotificationEventArgs>
Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder veräußert oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Das folgende Beispiel zeigt, wie Sie diese Methode in Ihrem Code verwenden können.
//
// 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 ();
}
Gilt für:
ObserveDidStartGathering(NSObject, EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die DidStartGatheringNotification Konstante.
public static Foundation.NSObject ObserveDidStartGathering (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDidStartGathering : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- objectToObserve
- NSObject
Das zu beobachtende Objekt.
- handler
- EventHandler<NSNotificationEventArgs>
Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder veräußert oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren DidStartGatheringNotification .
// 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 ();