type
TScObtainCRLEvent = procedure (Sender: TObject; DistributionPointName: TScGeneralNames; Update: boolean; out CRL: TScCRL) of object;
property OnObtainCRL: TScObtainCRLEvent;
Description
The OnObtainCRL event occurs when the server certificate is received from the TLS/SSL server and checking if certificate was revoked is performed.
Parameters:
• | Sender - the object that raised the event; |
• | DistributionPointName - identifies how CRL information for a certificate is obtained; |
• | Update - the boolean parameter indicates, if CRL was expired and need to be reloaded from CRL server. If Update is True, CRL need to been reloaded. |
• | CRL - set this out parameter to the found CRL object. |
See Also