LicenseInformation.LicenseChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当应用的许可证状态发生更改时,引发通知事件。
public:
virtual event LicenseChangedEventHandler ^ LicenseChanged;
// Register
event_token LicenseChanged(LicenseChangedEventHandler const& handler) const;
// Revoke with event_token
void LicenseChanged(event_token const* cookie) const;
// Revoke with event_revoker
LicenseInformation::LicenseChanged_revoker LicenseChanged(auto_revoke_t, LicenseChangedEventHandler const& handler) const;
public event LicenseChangedEventHandler LicenseChanged;
function onLicenseChanged(eventArgs) { /* Your code */ }
licenseInformation.addEventListener("licensechanged", onLicenseChanged);
licenseInformation.removeEventListener("licensechanged", onLicenseChanged);
- or -
licenseInformation.onlicensechanged = onLicenseChanged;
Public Custom Event LicenseChanged As LicenseChangedEventHandler
事件类型
注解
LicenseChanged 事件并不总是即时的。 如果已注册事件,该事件应在一小时内触发;如果不是,则应在 6 小时内发生。 通常,在使用 CurrentApp 进行测试时,建议等待最多 6 小时,因为如果应用注册了事件,则很可能花费更少的时间。
Windows Phone 8
此事件不会在 Windows Phone 8 引发。