(PowerShell) Example: Http.RemoveRequestHeader method
Demonstrates how to call the RemoveRequestHeader method.
Also see: Chilkat Http Default and Auto-Filled Headers
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
$success = $false
$http = New-Object Chilkat.Http
# Add a request header.
$http.SetRequestHeader("X-Something","1234")
$responseBody = $http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
# Examine the request header we just sent..
$($http.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:
$http.RemoveRequestHeader("X-Something")
$responseBody = $http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
$($http.LastHeader)
# Output:
# GET /helloWorld.txt HTTP/1.1
# Host: chilkatsoft.com
# Accept: */*
# Accept-Encoding: gzip
|