Event type for providing custom socket handlers
Source position: fphttpclient.pp line 45
type TGetSocketHandlerEvent = procedure( |
Sender: TObject; |
const UseSSL: Boolean; |
out AHandler: TSocketHandler |
) of object; |
Sender |
|
The HTTP client object that triggered the event |
UseSSL |
|
True if SSL/TLS connection is required |
AHandler |
|
The socket handler to use for the connection |
Event type called to allow custom socket handler creation. This enables the use of custom SSL implementations or socket configurations.
|
Event called to provide custom socket handlers |