X509IncludeOption Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how much of the X.509 certificate chain should be included in the X.509 data.
public enum class X509IncludeOption
public enum X509IncludeOption
type X509IncludeOption =
Public Enum X509IncludeOption
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | No X.509 chain information is included. |
ExcludeRoot | 1 | The entire X.509 chain is included except for the root certificate. |
EndCertOnly | 2 | Only the end certificate is included in the X.509 chain information. |
WholeChain | 3 | The entire X.509 chain is included. |
Remarks
This enumeration specifies how much of the certificate chain to include in X.509 data. You can choose to include the end certificate only; the whole chain; or the whole chain except the root certificate, which is the default.