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)