NSFileHandle.Notifications.ObserveDataAvailable Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ObserveDataAvailable(EventHandler<NSNotificationEventArgs>) |
Notificación fuertemente tipada para la DataAvailableNotification constante. |
ObserveDataAvailable(NSObject, EventHandler<NSNotificationEventArgs>) |
Notificación fuertemente tipada para la DataAvailableNotification constante. |
ObserveDataAvailable(EventHandler<NSNotificationEventArgs>)
Notificación fuertemente tipada para la DataAvailableNotification constante.
public static Foundation.NSObject ObserveDataAvailable (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDataAvailable : 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 = NSFileHandle.Notifications.ObserveDataAvailable ((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 = NSFileHandle.Notifications.ObserveDataAvailable (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Se aplica a
ObserveDataAvailable(NSObject, EventHandler<NSNotificationEventArgs>)
Notificación fuertemente tipada para la DataAvailableNotification constante.
public static Foundation.NSObject ObserveDataAvailable (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveDataAvailable : 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 DataAvailableNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = NSFileHandle.Notifications.ObserveDataAvailable ((notification) => {
Console.WriteLine ("Observed DataAvailableNotification!");
};
// Listen to all notifications posted for a single object
var token = NSFileHandle.Notifications.ObserveDataAvailable (objectToObserve, (notification) => {
Console.WriteLine ($"Observed DataAvailableNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();