UIPasteboard.Notifications.ObserveRemoved 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
ObserveRemoved(EventHandler<UIPasteboardChangeEventArgs>) |
Notificación fuertemente tipada para la RemovedNotification constante. |
ObserveRemoved(NSObject, EventHandler<UIPasteboardChangeEventArgs>) |
Notificación fuertemente tipada para la RemovedNotification constante. |
ObserveRemoved(EventHandler<UIPasteboardChangeEventArgs>)
Notificación fuertemente tipada para la RemovedNotification constante.
public static Foundation.NSObject ObserveRemoved (EventHandler<UIKit.UIPasteboardChangeEventArgs> handler);
static member ObserveRemoved : EventHandler<UIKit.UIPasteboardChangeEventArgs> -> Foundation.NSObject
Parámetros
- handler
- EventHandler<UIPasteboardChangeEventArgs>
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 los desarrolladores pueden usar este método en su código:
//
// Lambda style
//
// listening
notification = UIPasteboard.Notifications.ObserveRemoved ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("TypesAdded", args.TypesAdded);
Console.WriteLine ("TypesRemoved", args.TypesRemoved);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, UIKit.UIPasteboardChangeEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("TypesAdded", args.TypesAdded);
Console.WriteLine ("TypesRemoved", args.TypesRemoved);
}
void Setup ()
{
notification = UIPasteboard.Notifications.ObserveRemoved (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Se aplica a
ObserveRemoved(NSObject, EventHandler<UIPasteboardChangeEventArgs>)
Notificación fuertemente tipada para la RemovedNotification constante.
public static Foundation.NSObject ObserveRemoved (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIPasteboardChangeEventArgs> handler);
static member ObserveRemoved : Foundation.NSObject * EventHandler<UIKit.UIPasteboardChangeEventArgs> -> Foundation.NSObject
Parámetros
- objectToObserve
- NSObject
Objeto que se va a observar.
- handler
- EventHandler<UIPasteboardChangeEventArgs>
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 RemovedNotification a las notificaciones.
// Listen to all notifications posted for any object
var token = UIPasteboard.Notifications.ObserveRemoved ((notification) => {
Console.WriteLine ("Observed RemovedNotification!");
};
// Listen to all notifications posted for a single object
var token = UIPasteboard.Notifications.ObserveRemoved (objectToObserve, (notification) => {
Console.WriteLine ($"Observed RemovedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();