property OnObtainCRL: TScObtainCRLEvent;
type
TScObtainCRLEvent = procedure (Sender: TObject; DistributionPointName: TScGeneralNames; Update: boolean; out CRL: TScCRL) of object;
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 the way the 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 set to True, CRL needs to been reloaded. |
| • | CRL - set this out parameter to the found CRL object. |