NSFileHandle.Notifications.ObserveReadCompletion Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ObserveReadCompletion(EventHandler<NSFileHandleReadEventArgs>) |
Notification fortement typée pour la ReadCompletionNotification constante. |
ObserveReadCompletion(NSObject, EventHandler<NSFileHandleReadEventArgs>) |
Notification fortement typée pour la ReadCompletionNotification constante. |
ObserveReadCompletion(EventHandler<NSFileHandleReadEventArgs>)
Notification fortement typée pour la ReadCompletionNotification constante.
public static Foundation.NSObject ObserveReadCompletion (EventHandler<Foundation.NSFileHandleReadEventArgs> handler);
static member ObserveReadCompletion : EventHandler<Foundation.NSFileHandleReadEventArgs> -> Foundation.NSObject
Paramètres
- handler
- EventHandler<NSFileHandleReadEventArgs>
Méthode à appeler lors de la publication de la notification.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
L’exemple suivant montre comment les développeurs peuvent utiliser cette méthode dans leur code :
//
// Lambda style
//
// listening
notification = NSFileHandle.Notifications.ObserveReadCompletion ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("AvailableData", args.AvailableData);
Console.WriteLine ("UnixErrorCode", args.UnixErrorCode);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSFileHandleReadEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("AvailableData", args.AvailableData);
Console.WriteLine ("UnixErrorCode", args.UnixErrorCode);
}
void Setup ()
{
notification = NSFileHandle.Notifications.ObserveReadCompletion (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
S’applique à
ObserveReadCompletion(NSObject, EventHandler<NSFileHandleReadEventArgs>)
Notification fortement typée pour la ReadCompletionNotification constante.
public static Foundation.NSObject ObserveReadCompletion (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSFileHandleReadEventArgs> handler);
static member ObserveReadCompletion : Foundation.NSObject * EventHandler<Foundation.NSFileHandleReadEventArgs> -> Foundation.NSObject
Paramètres
- objectToObserve
- NSObject
Objet à observer.
- handler
- EventHandler<NSFileHandleReadEventArgs>
Méthode à appeler lors de la publication de la notification.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
Cette méthode peut être utilisée pour ReadCompletionNotification s’abonner aux notifications.
// Listen to all notifications posted for any object
var token = NSFileHandle.Notifications.ObserveReadCompletion ((notification) => {
Console.WriteLine ("Observed ReadCompletionNotification!");
};
// Listen to all notifications posted for a single object
var token = NSFileHandle.Notifications.ObserveReadCompletion (objectToObserve, (notification) => {
Console.WriteLine ($"Observed ReadCompletionNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();