Datasnap.DSHTTPClient.TDSHTTP.OnValidateCertificate

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: public
Source:
Datasnap.DSHTTPClient.pas
Datasnap.DSHTTPClient.hpp
Unit: Datasnap.DSHTTPClient
Parent: TDSHTTP

Delphi

property OnValidateCertificate: TValidateCertificateEvent read FOnValidateCertificate write FOnValidateCertificate;

C++

__property System::Net::Urlclient::TValidateCertificateEvent OnValidateCertificate = {read=FOnValidateCertificate, write=FOnValidateCertificate};

Description

Occurs when the SSL certificate is about to be validated.

The event handler of OnValidateCertificate receives the following parameters:

  • Sender: Object that invokes the event.
  • ARequest: Client request that invokes the event.
  • Certificate: Certificates to validate.
  • Accepted: True if the certificate is valid, False otherwise.

See Also