NSFileHandle.Notifications.ObserveReadCompletion Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ObserveReadCompletion(EventHandler<NSFileHandleReadEventArgs>) |
Notifica fortemente tipizzata per la ReadCompletionNotification costante. |
ObserveReadCompletion(NSObject, EventHandler<NSFileHandleReadEventArgs>) |
Notifica fortemente tipizzata per la ReadCompletionNotification costante. |
ObserveReadCompletion(EventHandler<NSFileHandleReadEventArgs>)
Notifica fortemente tipizzata per la ReadCompletionNotification costante.
public static Foundation.NSObject ObserveReadCompletion (EventHandler<Foundation.NSFileHandleReadEventArgs> handler);
static member ObserveReadCompletion : EventHandler<Foundation.NSFileHandleReadEventArgs> -> Foundation.NSObject
Parametri
- handler
- EventHandler<NSFileHandleReadEventArgs>
Metodo da richiamare quando viene inviata la notifica.
Restituisce
Oggetto token che può essere usato per interrompere la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)
Commenti
L'esempio seguente illustra come gli sviluppatori possono usare questo metodo nel codice:
//
// 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 ();
}
Si applica a
ObserveReadCompletion(NSObject, EventHandler<NSFileHandleReadEventArgs>)
Notifica fortemente tipizzata per la ReadCompletionNotification costante.
public static Foundation.NSObject ObserveReadCompletion (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSFileHandleReadEventArgs> handler);
static member ObserveReadCompletion : Foundation.NSObject * EventHandler<Foundation.NSFileHandleReadEventArgs> -> Foundation.NSObject
Parametri
- objectToObserve
- NSObject
Oggetto da osservare.
- handler
- EventHandler<NSFileHandleReadEventArgs>
Metodo da richiamare quando viene inviata la notifica.
Restituisce
Oggetto token che può essere usato per interrompere la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)
Commenti
Questo metodo può essere usato per sottoscrivere ReadCompletionNotification le notifiche.
// 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 ();