using System;
namespace System.Security.Cryptography.X509Certificates
{
/// Specifies the mode used to check for X509 certificate revocation.
// Token: 0x0200029E RID: 670
public enum X509RevocationMode
{
/// No revocation check is performed on the certificate.
// Token: 0x04001377 RID: 4983
NoCheck,
/// A revocation check is made using an online certificate revocation list (CRL).
// Token: 0x04001378 RID: 4984
Online,
/// A revocation check is made using a cached certificate revocation list (CRL).
// Token: 0x04001379 RID: 4985
Offline
}
}