using System;
namespace System.Security.Cryptography.X509Certificates
{
/// Specifies the name of the X.509 certificate store to open.
// Token: 0x02000284 RID: 644
public enum StoreName
{
/// The X.509 certificate store for other users.
// Token: 0x040012DD RID: 4829
AddressBook = 1,
/// The X.509 certificate store for third-party certificate authorities (CAs).
// Token: 0x040012DE RID: 4830
AuthRoot,
/// The X.509 certificate store for intermediate certificate authorities (CAs).
// Token: 0x040012DF RID: 4831
CertificateAuthority,
/// The X.509 certificate store for revoked certificates.
// Token: 0x040012E0 RID: 4832
Disallowed,
/// The X.509 certificate store for personal certificates.
// Token: 0x040012E1 RID: 4833
My,
/// The X.509 certificate store for trusted root certificate authorities (CAs).
// Token: 0x040012E2 RID: 4834
Root,
/// The X.509 certificate store for directly trusted people and resources.
// Token: 0x040012E3 RID: 4835
TrustedPeople,
/// The X.509 certificate store for directly trusted publishers.
// Token: 0x040012E4 RID: 4836
TrustedPublisher
}
}