using System;
namespace System.Security.Cryptography.X509Certificates
{
/// Specifies how much of the X.509 certificate chain should be included in the X.509 data.
// Token: 0x02000299 RID: 665
public enum X509IncludeOption
{
/// No X.509 chain information is included.
// Token: 0x04001357 RID: 4951
None,
/// The entire X.509 chain is included except for the root certificate.
// Token: 0x04001358 RID: 4952
ExcludeRoot,
/// Only the end certificate is included in the X.509 chain information.
// Token: 0x04001359 RID: 4953
EndCertOnly,
/// The entire X.509 chain is included.
// Token: 0x0400135A RID: 4954
WholeChain
}
}