RatedContentRestrictions.RestrictionsChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザーのコンテンツ設定に変更があった場合にアプリに通知するイベント ハンドラー。
// Register
event_token RestrictionsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void RestrictionsChanged(event_token const* cookie) const;
// Revoke with event_revoker
RatedContentRestrictions::RestrictionsChanged_revoker RestrictionsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> RestrictionsChanged;
function onRestrictionsChanged(eventArgs) { /* Your code */ }
ratedContentRestrictions.addEventListener("restrictionschanged", onRestrictionsChanged);
ratedContentRestrictions.removeEventListener("restrictionschanged", onRestrictionsChanged);
- or -
ratedContentRestrictions.onrestrictionschanged = onRestrictionsChanged;
Public Custom Event RestrictionsChanged As EventHandler(Of Object)