This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[FlagsAttribute]
public enum InstallResponseFlags
<FlagsAttribute>
Public Enumeration InstallResponseFlags
[FlagsAttribute]
public enum class InstallResponseFlags
[<FlagsAttribute>]
type InstallResponseFlags
AllowNone | 0 | Do not install untrusted certificates or certificates for which there is no corresponding request. |
AllowNoOutstandingRequest | 1 | Create the private key from the certificate response rather than from the dummy certificate. This makes the dummy certificate optional. If this value is not set, the dummy certificate must exist, and the private key is extracted from it. |
AllowUntrustedCertificate | 2 | Install untrusted end entity and certification authority certificates. Certification authority certificates include root and subordinate CA certificates. End entity certificates are installed to the personal store, and CA certificates are installed to the certification authority store. |
AllowUntrustedRoot | 4 | Perform the same action as the AllowUntrustedCertificate flag but also installs the certificate even if the certificate chain cannot be built because the root is not trusted. |