25 lines
808 B
C#
25 lines
808 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography.X509Certificates
|
|
{
|
|
/// <summary>Specifies which X509 certificates in the chain should be checked for revocation.</summary>
|
|
// Token: 0x020001D5 RID: 469
|
|
[Token(Token = "0x20001D5")]
|
|
public enum X509RevocationFlag
|
|
{
|
|
/// <summary>Only the end certificate is checked for revocation.</summary>
|
|
// Token: 0x040006AA RID: 1706
|
|
[Token(Token = "0x40006AA")]
|
|
EndCertificateOnly,
|
|
/// <summary>The entire chain of certificates is checked for revocation.</summary>
|
|
// Token: 0x040006AB RID: 1707
|
|
[Token(Token = "0x40006AB")]
|
|
EntireChain,
|
|
/// <summary>The entire chain, except the root certificate, is checked for revocation.</summary>
|
|
// Token: 0x040006AC RID: 1708
|
|
[Token(Token = "0x40006AC")]
|
|
ExcludeRoot
|
|
}
|
|
}
|