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.
Namespace:
PKI.CertificateServices
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public void PublishCRL(
bool deltaOnly = false,
bool updateFilesOnly = false
)
Public Sub PublishCRL (
Optional deltaOnly As Boolean = false,
Optional updateFilesOnly As Boolean = false
)
public:
void PublishCRL(
bool deltaOnly = false,
bool updateFilesOnly = false
)
member PublishCRL :
?deltaOnly : bool *
?updateFilesOnly : bool
(* Defaults:
let _deltaOnly = defaultArg deltaOnly false
let _updateFilesOnly = defaultArg updateFilesOnly false
*)
-> unit
Parameters
- deltaOnly (Optional)
- Type: SystemBoolean
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 (Optional)
- Type: SystemBoolean
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 See Also