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,19 @@
using System;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Specifies which X509 certificates in the chain should be checked for revocation.</summary>
// Token: 0x0200029D RID: 669
public enum X509RevocationFlag
{
/// <summary>Only the end certificate is checked for revocation.</summary>
// Token: 0x04001373 RID: 4979
EndCertificateOnly,
/// <summary>The entire chain of certificates is checked for revocation.</summary>
// Token: 0x04001374 RID: 4980
EntireChain,
/// <summary>The entire chain, except the root certificate, is checked for revocation.</summary>
// Token: 0x04001375 RID: 4981
ExcludeRoot
}
}