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: 0x020001D9 RID: 473
|
|
[Token(Token = "0x20001D9")]
|
|
public enum X509RevocationFlag
|
|
{
|
|
/// <summary>Only the end certificate is checked for revocation.</summary>
|
|
// Token: 0x040006B7 RID: 1719
|
|
[Token(Token = "0x40006B7")]
|
|
EndCertificateOnly,
|
|
/// <summary>The entire chain of certificates is checked for revocation.</summary>
|
|
// Token: 0x040006B8 RID: 1720
|
|
[Token(Token = "0x40006B8")]
|
|
EntireChain,
|
|
/// <summary>The entire chain, except the root certificate, is checked for revocation.</summary>
|
|
// Token: 0x040006B9 RID: 1721
|
|
[Token(Token = "0x40006B9")]
|
|
ExcludeRoot
|
|
}
|
|
}
|