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