(Xojo Plugin) Example: Http.RemoveRequestHeader method
Demonstrates how to call the RemoveRequestHeader method.
Also see: Chilkat Http Default and Auto-Filled Headers
Dim success As Boolean
success = False
Dim http As New Chilkat.Http
// 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..
System.DebugLog(http.LastHeader)
System.DebugLog("----")
// 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")
System.DebugLog(http.LastHeader)
// Output:
// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip
|