System.Security.Cryptography.CngExportPolicies
Specifies the key export policies for a key.
namespace System.Security.Cryptography
{
public enum CngExportPolicies
{
None = 0,
AllowExport = 1,
AllowPlaintextExport = 2,
AllowArchiving = 4,
AllowPlaintextArchiving = 8
}
}