Sample code for 30+ languages & platforms
Swift

Example: Http.ClearHeaders method

Demonstrates how to call the ClearHeaders method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    let http = CkoHttp()!

    // Add a request header.
    http.setRequestHeader(name: "X-Something", value: "1234")
    http.setRequestHeader(name: "X-Example", value: "5678")

    var responseBody: String? = http.quickGetStr(url: "https://chilkatsoft.com/helloWorld.txt")
    // Examine the request header we just sent..
    print("\(http.lastHeader!)")
    print("----")

    // Output:

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

    // Remove the request headers we previously added:
    http.clearHeaders()

    responseBody = http.quickGetStr(url: "https://chilkatsoft.com/helloWorld.txt")
    print("\(http.lastHeader!)")

    // Output:

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

}