次の方法で共有


UIPasteboard.Notifications.ObserveRemoved メソッド

定義

オーバーロード

ObserveRemoved(EventHandler<UIPasteboardChangeEventArgs>)

定数に対して RemovedNotification 厳密に型指定された通知。

ObserveRemoved(NSObject, EventHandler<UIPasteboardChangeEventArgs>)

定数に対して RemovedNotification 厳密に型指定された通知。

ObserveRemoved(EventHandler<UIPasteboardChangeEventArgs>)

定数に対して RemovedNotification 厳密に型指定された通知。

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

パラメーター

handler
EventHandler<UIPasteboardChangeEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、またはに渡すことによって通知の受信を停止するために使用できるトークン オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

次の例は、開発者がコードでこのメソッドを使用する方法を示しています。

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

適用対象

ObserveRemoved(NSObject, EventHandler<UIPasteboardChangeEventArgs>)

定数に対して RemovedNotification 厳密に型指定された通知。

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

パラメーター

objectToObserve
NSObject

観察するオブジェクト。

handler
EventHandler<UIPasteboardChangeEventArgs>

通知が投稿されたときに呼び出すメソッド。

戻り値

通知を破棄するか、またはに渡すことによって通知の受信を停止するために使用できるトークン オブジェクト RemoveObservers(IEnumerable<NSObject>)

注釈

このメソッドは、通知を RemovedNotification サブスクライブするために使用できます。

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

適用対象