CertificateAuthorityPublishCRL Method

This method publishes certificate revocation lists (CRLs) for a certification authority (CA).

The PublishCRL method publishes a CRL based on the CA's current certificate, as well as CRLs based on any CA certificates that have been renewed and are not yet expired.

Definition

Namespace: PKI.CertificateServices
Assembly: SysadminsLV.PKI.Win (in SysadminsLV.PKI.Win.dll) Version: 4.0.1.0 (4.0.1.0)
C#
public void PublishCRL(
	bool deltaOnly = false,
	bool updateFilesOnly = false
)

Parameters

deltaOnly  Boolean  (Optional)
A delta CRL is published, or the most recent delta CRL is republished if updateFilesOnly parameter is set. Note that if the CA has not enabled delta CRL publishing, use of this flag will result in an error.
updateFilesOnly  Boolean  (Optional)
The most recent base or delta CRL, is republished. The CA will not republish a CRL to a CRL distribution point if the CRL at the distribution point is already the most recent CRL.

Exceptions

UninitializedObjectExceptionThe object is not properly initialized.
ServerUnavailableExceptionCA server is not accessible via RPC/DCOM.

See Also