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