NSProcessInfo.ThermalStateDidChangeNotification Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Константа уведомлений для ThermalStateDidChange
[Foundation.Advice("Use NSProcessInfo.Notifications.ObserveThermalStateDidChange helper method instead.")]
[Foundation.Field("NSProcessInfoThermalStateDidChangeNotification", "Foundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 10, 3, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 4, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString ThermalStateDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 10, 3, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 4, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.ThermalStateDidChangeNotification : Foundation.NSString
Значение свойства
Константа NSString должна использоваться в качестве токена для NSNotificationCenter.
- Атрибуты
Комментарии
Эту константу NSNotificationCenter можно использовать вместе с , чтобы зарегистрировать прослушиватель для этого уведомления. Кроме того, разработчики могут использовать строго типизированное уведомление ObserveThermalStateDidChange . Это NSString вместо строки, так как эти значения можно использовать в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строк. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
NSProcessInfo.ThermalStateDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification NSProcessInfo", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification NSProcessInfo", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (NSProcessInfo.ThermalStateDidChangeNotification, Callback);
}