using System;
namespace System.Security.Cryptography.X509Certificates
{
/// Specifies the location of the X.509 certificate store.
// Token: 0x02000283 RID: 643
public enum StoreLocation
{
/// The X.509 certificate store used by the current user.
// Token: 0x040012DA RID: 4826
CurrentUser = 1,
/// The X.509 certificate store assigned to the local machine.
// Token: 0x040012DB RID: 4827
LocalMachine
}
}