Discuss this help topic in SecureBlackbox Forum
HTTPS: Send a custom request
TElHTTPSClient.CustomRequest() method is used to perform custom requests. The data can be passed as a stream to one of the overloads of CustomRequest() method.
Examples:
C#:
TElHTTPSClient c = new TElHTTPSClient();
c.CustomRequest("http://target.url", "PROPFIND");
Delphi:
var
client : TElHTTPSClient;
...
client := TElHTTPSClient.Create(nil);
client.CustomRequest('http://target.url', 'PROPFIND');