This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -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: 0x020001D6 RID: 470
[Token(Token = "0x20001D6")]
public enum X509RevocationMode
{
/// <summary>No revocation check is performed on the certificate.</summary>
// Token: 0x040006AE RID: 1710
[Token(Token = "0x40006AE")]
NoCheck,
/// <summary>A revocation check is made using an online certificate revocation list (CRL).</summary>
// Token: 0x040006AF RID: 1711
[Token(Token = "0x40006AF")]
Online,
/// <summary>A revocation check is made using a cached certificate revocation list (CRL).</summary>
// Token: 0x040006B0 RID: 1712
[Token(Token = "0x40006B0")]
Offline
}
}