System.Security.Cryptography.CspKeyContainerInfo
namespace System.Security.Cryptography
{
public sealed class CspKeyContainerInfo
{
public bool Accessible { get; }
public bool Exportable { get; }
public bool HardwareDevice { get; }
public string KeyContainerName { get; }
public KeyNumber KeyNumber { get; }
public bool MachineKeyStore { get; }
public bool Protected { get; }
public string ProviderName { get; }
public int ProviderType { get; }
public bool RandomlyGenerated { get; }
public bool Removable { get; }
public string UniqueKeyContainerName { get; }
public CspKeyContainerInfo(CspParameters parameters);
}
}