Files
2026-06-04 11:42:34 +02:00

35 lines
1.3 KiB
C#

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