Sample code for 30+ languages & platforms
Visual FoxPro

Example: Http.RemoveRequestHeader method

Demonstrates how to call the RemoveRequestHeader method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loHttp
LOCAL lcResponseBody

lnSuccess = 0

loHttp = CreateObject('Chilkat.Http')

* Add a request header.
loHttp.SetRequestHeader("X-Something","1234")

lcResponseBody = loHttp.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
* Examine the request header we just sent..
? loHttp.LastHeader
? "----"

* Output:

* GET /helloWorld.txt HTTP/1.1
* Host: chilkatsoft.com
* Accept: */*
* Accept-Encoding: gzip
* X-Something: 1234

* Remove the request header we previously added:
loHttp.RemoveRequestHeader("X-Something")

lcResponseBody = loHttp.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
? loHttp.LastHeader

* Output:

* GET /helloWorld.txt HTTP/1.1
* Host: chilkatsoft.com
* Accept: */*
* Accept-Encoding: gzip

RELEASE loHttp