UIDocument.Notifications.ObserveStateChanged Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Overload
ObserveStateChanged(EventHandler<NSNotificationEventArgs>) |
Pemberitahuan yang sangat ditik untuk StateChangedNotification konstanta. |
ObserveStateChanged(NSObject, EventHandler<NSNotificationEventArgs>) |
Pemberitahuan yang sangat ditik untuk StateChangedNotification konstanta. |
ObserveStateChanged(EventHandler<NSNotificationEventArgs>)
Pemberitahuan yang sangat ditik untuk StateChangedNotification konstanta.
public static Foundation.NSObject ObserveStateChanged (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveStateChanged : 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
Contoh berikut menunjukkan bagaimana Anda dapat menggunakan metode ini dalam kode Anda
//
// Lambda style
//
// listening
notification = UIDocument.Notifications.ObserveStateChanged ((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 = UIDocument.Notifications.ObserveStateChanged (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Berlaku untuk
ObserveStateChanged(NSObject, EventHandler<NSNotificationEventArgs>)
Pemberitahuan yang sangat ditik untuk StateChangedNotification konstanta.
public static Foundation.NSObject ObserveStateChanged (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveStateChanged : 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 StateChangedNotification pemberitahuan.
// Listen to all notifications posted for any object
var token = UIDocument.Notifications.ObserveStateChanged ((notification) => {
Console.WriteLine ("Observed StateChangedNotification!");
};
// Listen to all notifications posted for a single object
var token = UIDocument.Notifications.ObserveStateChanged (objectToObserve, (notification) => {
Console.WriteLine ($"Observed StateChangedNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();