This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,34 @@
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
}
}