oh dear
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Security.Cryptography.X509Certificates
|
||||
{
|
||||
/// <summary>Specifies the mode used to check for X509 certificate revocation.</summary>
|
||||
// Token: 0x020001DA RID: 474
|
||||
[Token(Token = "0x20001DA")]
|
||||
public enum X509RevocationMode
|
||||
{
|
||||
/// <summary>No revocation check is performed on the certificate.</summary>
|
||||
// Token: 0x040006BB RID: 1723
|
||||
[Token(Token = "0x40006BB")]
|
||||
NoCheck,
|
||||
/// <summary>A revocation check is made using an online certificate revocation list (CRL).</summary>
|
||||
// Token: 0x040006BC RID: 1724
|
||||
[Token(Token = "0x40006BC")]
|
||||
Online,
|
||||
/// <summary>A revocation check is made using a cached certificate revocation list (CRL).</summary>
|
||||
// Token: 0x040006BD RID: 1725
|
||||
[Token(Token = "0x40006BD")]
|
||||
Offline
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user