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