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