Datasnap.DSHTTPClient.TDSHTTP.OnSelectClientCertificate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnSelectClientCertificate: TNeedClientCertificateEvent read FOnSelectCertificate write FOnSelectCertificate;

C++

__property System::Net::Urlclient::TNeedClientCertificateEvent OnSelectClientCertificate = {read=FOnSelectCertificate, write=FOnSelectCertificate};

Properties

Type Visibility Source Unit Parent
event public
Datasnap.DSHTTPClient.pas
Datasnap.DSHTTPClient.hpp
Datasnap.DSHTTPClient TDSHTTP

Description

Occurs when the server requires the user to select an SSL certificate from the installed ones.

The event handler of OnSelectClientCertificate receives the following parameters:

  • Sender: Object that invokes the event.
  • ARequest: Client request that invokes the event.
  • ACertificateList: List of available certificates installed in the system.
  • AnIndex: Index of the selected certificate.

See Also