This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Specifies which X509 certificates in the chain should be checked for revocation.</summary>
// Token: 0x020001D5 RID: 469
[Token(Token = "0x20001D5")]
public enum X509RevocationFlag
{
/// <summary>Only the end certificate is checked for revocation.</summary>
// Token: 0x040006AA RID: 1706
[Token(Token = "0x40006AA")]
EndCertificateOnly,
/// <summary>The entire chain of certificates is checked for revocation.</summary>
// Token: 0x040006AB RID: 1707
[Token(Token = "0x40006AB")]
EntireChain,
/// <summary>The entire chain, except the root certificate, is checked for revocation.</summary>
// Token: 0x040006AC RID: 1708
[Token(Token = "0x40006AC")]
ExcludeRoot
}
}