StorePermissionFlags
Specifies the permitted access to X.509 certificate stores.
namespace System.Security.Permissions
{
[Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId = "SYSLIB0003", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
[Flags]
public enum StorePermissionFlags
{
NoFlags = 0,
CreateStore = 1,
DeleteStore = 2,
EnumerateStores = 4,
OpenStore = 16,
AddToStore = 32,
RemoveFromStore = 64,
EnumerateCertificates = 128,
AllFlags = 247
}
}