ProtectionPolicyManager.PolicyChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Note
Starting in July 2022, Microsoft is deprecating Windows Information Protection (WIP) and the APIs that support WIP. Microsoft will continue to support WIP on supported versions of Windows. New versions of Windows won't include new capabilities for WIP, and it won't be supported in future versions of Windows. For more information, see Announcing sunset of Windows Information Protection.
For your data protection needs, Microsoft recommends that you use Microsoft Purview Information Protection and Microsoft Purview Data Loss Prevention. Purview simplifies the configuration set-up and provides an advanced set of capabilities.
An event that is raised in response to changes in Windows Information Protection (WIP) policy managed by the Policy CSP.
// Register
static event_token PolicyChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void PolicyChanged(event_token const* cookie) const;
// Revoke with event_revoker
static ProtectionPolicyManager::PolicyChanged_revoker PolicyChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> PolicyChanged;
function onPolicyChanged(eventArgs) { /* Your code */ }
Windows.Security.EnterpriseData.ProtectionPolicyManager.addEventListener("policychanged", onPolicyChanged);
Windows.Security.EnterpriseData.ProtectionPolicyManager.removeEventListener("policychanged", onPolicyChanged);
- or -
Windows.Security.EnterpriseData.ProtectionPolicyManager.onpolicychanged = onPolicyChanged;
Public Shared Custom Event PolicyChanged As EventHandler(Of Object)
Event Type
Windows requirements
Device family |
Windows Desktop Extension SDK (introduced in 10.0.10586.0)
Windows Mobile Extension SDK (introduced in 10.0.10586.0) |
API contract |
Windows.Security.EnterpriseData.EnterpriseDataContract (introduced in v2.0)
|