Sample code for 30+ languages & platforms
C

Example: Rest.AddHeader method

Demonstrates the AddHeader method.

Chilkat C Downloads

C
#include <C_CkRest.h>

void ChilkatSample(void)
    {
    HCkRest rest;

    rest = CkRest_Create();

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

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


    CkRest_Dispose(rest);

    }