Sample code for 30+ languages & platforms
Delphi DLL

Example: Rest.AddHeader method

Demonstrates the AddHeader method.

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Rest;

...

procedure TForm1.Button1Click(Sender: TObject);
var
rest: HCkRest;

begin
rest := CkRest_Create();

CkRest_AddHeader(rest,'User-Agent','MyApplication/1.0');

// ...
// ...
// ...

CkRest_Dispose(rest);

end;