LineDisplayAttributes.IsPowerNotifyEnabled 属性

定义

获取或设置是否启用设备以通知用户电源状态更改。

public:
 property bool IsPowerNotifyEnabled { bool get(); void set(bool value); };
bool IsPowerNotifyEnabled();

void IsPowerNotifyEnabled(bool value);
public bool IsPowerNotifyEnabled { get; set; }
var boolean = lineDisplayAttributes.isPowerNotifyEnabled;
lineDisplayAttributes.isPowerNotifyEnabled = boolean;
Public Property IsPowerNotifyEnabled As Boolean

属性值

Boolean

bool

如果启用电源状态通知,则为 True;否则为 False。

注解

电源状态通知通过 ClaimedLineDisplay.StatusUpdated 传递。 属性的默认值为 False (这意味着即使应用订阅了 ClaimedLineDisplay.StatusUpdated 事件) ,设备也不会发送电源状态通知。 仅当 LineDisplayCapabilities.PowerReportingType 未设置为 UnknownPowerReportingType 时,此属性才能设置为 True。

在下一次调用 ClaimedLineDisplay.TryUpdateAttributesAsync (LineDisplayAttributes) 时,会将对此属性的更改提交到设备。

适用于

另请参阅