Discuss this help topic in SecureBlackbox Forum

HTTPS: Perform a PUT request

With TElHTTPSClient.Put() method you perform PUT requests. The variants of the method accept strings, byte arrays or data streams to be sent as a payload.

Examples:

C#:


TElHTTPSClient c = new TElHTTPSClient();
c.Put(@"http://target.url", "text_to_send");
Delphi:

var client : TElHTTPSClient;
...
client := new TElHTTPSClient.Create(nil);
client.Put('http://target.url', 'text_to_send');

How To articles about client-side HTTPS questions

Discuss this help topic in SecureBlackbox Forum