ProtectedAccessSuspendingEventArgs ProtectedAccessSuspendingEventArgs ProtectedAccessSuspendingEventArgs ProtectedAccessSuspendingEventArgs Class

Definition

Note

Windows Information Protection (WIP) policy cannot be applied on Windows 10, version 1511 (build 10586) or earlier.

Provides data when content protection is being suspended.

public : sealed class ProtectedAccessSuspendingEventArgs : IProtectedAccessSuspendingEventArgspublic sealed class ProtectedAccessSuspendingEventArgs : IProtectedAccessSuspendingEventArgsPublic NotInheritable Class ProtectedAccessSuspendingEventArgs Implements IProtectedAccessSuspendingEventArgs// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows Desktop Extension SDK (introduced v10.0.10240.0) Windows Mobile Extension SDK (introduced v10.0.10240.0)
API contract
Windows.Security.EnterpriseData.EnterpriseDataContract (introduced v1)

Remarks

This object is accessed when you implement an event handler for the ProtectionPolicyManager.ProtectedAccessSuspending event.

Properties

Deadline Deadline Deadline Deadline

Note

Windows Information Protection (WIP) policy cannot be applied on Windows 10, version 1511 (build 10586) or earlier.

DateTime at which content protection will be suspended. The app can subtract DateTime.Now from this value to determine how much time there is to perform any processing before the suspension occurs.

public : DateTime Deadline { get; }public DateTimeOffset Deadline { get; }Public ReadOnly Property Deadline As DateTimeOffset// You can use this property in JavaScript.
Value
DateTime DateTimeOffset DateTimeOffset DateTimeOffset

DateTime at which content protection will be suspended.

Identities Identities Identities Identities

Note

Windows Information Protection (WIP) policy cannot be applied on Windows 10, version 1511 (build 10586) or earlier.

Contains the enterprise identities for which content protection is being suspended.

public : IVectorView<string> Identities { get; }public IReadOnlyList<string> Identities { get; }Public ReadOnly Property Identities As IReadOnlyList<string>// You can use this property in JavaScript.
Value
IVectorView<PlatForm::String> IReadOnlyList<string> IReadOnlyList<string> IReadOnlyList<string>

The enterprise identities for which content protection is being suspended.

Methods

GetDeferral() GetDeferral() GetDeferral() GetDeferral()

Note

Windows Information Protection (WIP) policy cannot be applied on Windows 10, version 1511 (build 10586) or earlier.

Gets the Deferral object that manages the protection suspension. The app must call Deferral.Complete before it returns from the event handler.

public : Deferral GetDeferral()public Deferral GetDeferral()Public Function GetDeferral() As Deferral// You can use this method in JavaScript.
Returns