Files
2026-06-04 11:42:34 +02:00

20 lines
663 B
C#

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
}
}