Bagikan melalui


UIView.Notifications.ObserveGrayscaleStatusDidChange Metode

Definisi

Overload

ObserveGrayscaleStatusDidChange(EventHandler<NSNotificationEventArgs>)

Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta.

ObserveGrayscaleStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta.

ObserveGrayscaleStatusDidChange(EventHandler<NSNotificationEventArgs>)

Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta.

public static Foundation.NSObject ObserveGrayscaleStatusDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveGrayscaleStatusDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parameter

handler
EventHandler<NSNotificationEventArgs>

Metode untuk memanggil saat pemberitahuan diposting.

Mengembalikan

Objek token yang dapat digunakan untuk berhenti menerima pemberitahuan dengan membuangnya atau meneruskannya ke RemoveObservers(IEnumerable<NSObject>)

Keterangan

Metode ini dapat digunakan untuk berlangganan GrayscaleStatusDidChangeNotification pemberitahuan.

// Listen to all notifications posted for any object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange ((notification) => {
	Console.WriteLine ("Observed GrayscaleStatusDidChangeNotification!");
};

// Listen to all notifications posted for a single object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed GrayscaleStatusDidChangeNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Berlaku untuk

ObserveGrayscaleStatusDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Pemberitahuan yang ditik dengan kuat untuk GrayscaleStatusDidChangeNotification konstanta.

public static Foundation.NSObject ObserveGrayscaleStatusDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveGrayscaleStatusDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parameter

objectToObserve
NSObject

Objek yang akan diamati.

handler
EventHandler<NSNotificationEventArgs>

Metode untuk memanggil saat pemberitahuan diposting.

Mengembalikan

Objek token yang dapat digunakan untuk berhenti menerima pemberitahuan dengan membuangnya atau meneruskannya ke RemoveObservers(IEnumerable<NSObject>)

Keterangan

Metode ini dapat digunakan untuk berlangganan GrayscaleStatusDidChangeNotification pemberitahuan.

// Listen to all notifications posted for any object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange ((notification) => {
	Console.WriteLine ("Observed GrayscaleStatusDidChangeNotification!");
};

// Listen to all notifications posted for a single object
var token = UIView.Notifications.ObserveGrayscaleStatusDidChange (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed GrayscaleStatusDidChangeNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Berlaku untuk