UIPasteboard.Notifications.ObserveRemoved Method

Definition

Overloads

ObserveRemoved(EventHandler<UIPasteboardChangeEventArgs>)

Strongly typed notification for the RemovedNotification constant.

ObserveRemoved(NSObject, EventHandler<UIPasteboardChangeEventArgs>)

Strongly typed notification for the RemovedNotification constant.

ObserveRemoved(EventHandler<UIPasteboardChangeEventArgs>)

Strongly typed notification for the RemovedNotification constant.

public static Foundation.NSObject ObserveRemoved (EventHandler<UIKit.UIPasteboardChangeEventArgs> handler);
static member ObserveRemoved : EventHandler<UIKit.UIPasteboardChangeEventArgs> -> Foundation.NSObject

Parameters

handler
EventHandler<UIPasteboardChangeEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

The following example shows how developers can use this method in their code:

//
// 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 ();
}

Applies to

ObserveRemoved(NSObject, EventHandler<UIPasteboardChangeEventArgs>)

Strongly typed notification for the RemovedNotification constant.

public static Foundation.NSObject ObserveRemoved (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIPasteboardChangeEventArgs> handler);
static member ObserveRemoved : Foundation.NSObject * EventHandler<UIKit.UIPasteboardChangeEventArgs> -> Foundation.NSObject

Parameters

objectToObserve
NSObject

The object to observe.

handler
EventHandler<UIPasteboardChangeEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

This method can be used to subscribe for RemovedNotification notifications.

// 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 ();

Applies to