using System; using Cpp2IlInjected; namespace System.Security.Cryptography.X509Certificates { /// Specifies which X509 certificates in the chain should be checked for revocation. // Token: 0x020001D9 RID: 473 [Token(Token = "0x20001D9")] public enum X509RevocationFlag { /// Only the end certificate is checked for revocation. // Token: 0x040006B7 RID: 1719 [Token(Token = "0x40006B7")] EndCertificateOnly, /// The entire chain of certificates is checked for revocation. // Token: 0x040006B8 RID: 1720 [Token(Token = "0x40006B8")] EntireChain, /// The entire chain, except the root certificate, is checked for revocation. // Token: 0x040006B9 RID: 1721 [Token(Token = "0x40006B9")] ExcludeRoot } }