PlatformDiagnosticsAndUsageDataSettings.CollectionLevelChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在数据收集级别更改时发生。
// Register
static event_token CollectionLevelChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void CollectionLevelChanged(event_token const* cookie) const;
// Revoke with event_revoker
static PlatformDiagnosticsAndUsageDataSettings::CollectionLevelChanged_revoker CollectionLevelChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> CollectionLevelChanged;
function onCollectionLevelChanged(eventArgs) { /* Your code */ }
Windows.System.Profile.PlatformDiagnosticsAndUsageDataSettings.addEventListener("collectionlevelchanged", onCollectionLevelChanged);
Windows.System.Profile.PlatformDiagnosticsAndUsageDataSettings.removeEventListener("collectionlevelchanged", onCollectionLevelChanged);
- or -
Windows.System.Profile.PlatformDiagnosticsAndUsageDataSettings.oncollectionlevelchanged = onCollectionLevelChanged;
Public Shared Custom Event CollectionLevelChanged As EventHandler(Of Object)