This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Specifies the location of the X.509 certificate store.</summary>
// Token: 0x020001D5 RID: 469
[Token(Token = "0x20001D5")]
public enum StoreLocation
{
/// <summary>The X.509 certificate store used by the current user.</summary>
// Token: 0x04000687 RID: 1671
[Token(Token = "0x4000687")]
CurrentUser = 1,
/// <summary>The X.509 certificate store assigned to the local machine.</summary>
// Token: 0x04000688 RID: 1672
[Token(Token = "0x4000688")]
LocalMachine
}
}