Sample code for 30+ languages & platforms
Visual Basic 6.0

Example: Http.RemoveRequestHeader method

Demonstrates how to call the RemoveRequestHeader method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat Visual Basic 6.0 Downloads

Visual Basic 6.0
Dim success As Long
success = 0

Dim http As New ChilkatHttp

' Add a request header.
http.SetRequestHeader "X-Something","1234"

Dim responseBody As String
responseBody = http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
' Examine the request header we just sent..
Debug.Print http.LastHeader
Debug.Print "----"

' Output:

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

' Remove the request header we previously added:
http.RemoveRequestHeader "X-Something"

responseBody = http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
Debug.Print http.LastHeader

' Output:

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