type
TScObtainCRLEvent = procedure (Sender: TObject; DistributionPointName: TScGeneralNames; Update: boolean; out CRL: TScCRL) of object;
property OnObtainCRL: TScObtainCRLEvent;
Description
Occurs when the server verifies the revocation status of the received client certificate. The event is intended to get a CRL by its DistributionPointName.
Parameters:
• | Sender - the object that raised the event; |
• | DistributionPointName - identifies how CRL information for the certificate is obtained; |
• | Update - the boolean parameter indicates whether CRL has expired and needs to be reloaded from the CRL server. When Update is True, CRL needs to been reloaded. |
• | CRL - set this out parameter to the found CRL object. |
See Also