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

27 lines
1.1 KiB
C#

using System;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Specifies the way to open the X.509 certificate store.</summary>
// Token: 0x02000281 RID: 641
[Flags]
public enum OpenFlags
{
/// <summary>Open the X.509 certificate store for reading only.</summary>
// Token: 0x040012CD RID: 4813
ReadOnly = 0,
/// <summary>Open the X.509 certificate store for both reading and writing.</summary>
// Token: 0x040012CE RID: 4814
ReadWrite = 1,
/// <summary>Open the X.509 certificate store for the highest access allowed.</summary>
// Token: 0x040012CF RID: 4815
MaxAllowed = 2,
/// <summary>Opens only existing stores; if no store exists, the <see cref="M:System.Security.Cryptography.X509Certificates.X509Store.Open(System.Security.Cryptography.X509Certificates.OpenFlags)" /> method will not create a new store.</summary>
// Token: 0x040012D0 RID: 4816
OpenExistingOnly = 4,
/// <summary>Open the X.509 certificate store and include archived certificates.</summary>
// Token: 0x040012D1 RID: 4817
IncludeArchived = 8
}
}