NSFileHandle.DataAvailableNotification Propiedad
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í.
Constante de notificación para DataAvailable
[Foundation.Advice("Use NSFileHandle.Notifications.ObserveDataAvailable helper method instead.")]
[Foundation.Field("NSFileHandleDataAvailableNotification", "Foundation")]
public static Foundation.NSString DataAvailableNotification { get; }
member this.DataAvailableNotification : Foundation.NSString
Valor de propiedad
La constante NSString debe usarse como token para NSNotificationCenter.
- Atributos
Comentarios
Esta constante se puede usar con para NSNotificationCenter registrar un agente de escucha para esta notificación. Se trata de un NSString en lugar de una cadena, ya que estos valores se pueden usar como tokens en algunas bibliotecas nativas en lugar de usarse exclusivamente para su contenido de cadena real. El parámetro "notification" de la devolución de llamada contiene información adicional específica del tipo de notificación.
Si desea suscribirse a esta notificación, puede usar el NSFileHandle.Notificationsmétodo .ObserveDataAvailable que ofrece acceso fuertemente tipado a los parámetros de la notificación.
En el ejemplo siguiente se muestra cómo usar la clase Notifications fuertemente tipada para sacar las estimaciones de las propiedades disponibles en la notificación:
//
// 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 ();
}
En el ejemplo siguiente se muestra cómo usar la notificación con defaultCenter API:
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
NSFileHandle.DataAvailableNotification, (notification) => {Console.WriteLine ("Received the notification NSFileHandle", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification NSFileHandle", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (NSFileHandle.DataAvailableNotification, Callback);
}