Visual Basic 6.0
Visual Basic 6.0
Get a REST Response Header by Name
See more REST Examples
Demonstrates Rest.ResponseHdrByName, which returns the value of a response header field by name. Header field names are case-insensitive.
Background. Response headers are available after ReadResponseHeader has read the status line and headers. Lookup by name is convenient when a specific header, such as Content-Type, is needed.
Chilkat Visual Basic 6.0 Downloads
Dim success As Long
success = 0
Dim rest As New ChilkatRest
Dim bTls As Long
bTls = 1
Dim bAutoReconnect As Long
bAutoReconnect = 1
success = rest.Connect("example.com",443,bTls,bAutoReconnect)
If (success = 0) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
success = rest.SendReqNoBody("GET","/api/items/123")
If (success = 0) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
Dim statusCode As Long
statusCode = rest.ReadResponseHeader()
If (statusCode < 0) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
' Return the value of a response header field by name. Header field names are case-insensitive.
Dim contentType As String
contentType = rest.ResponseHdrByName("Content-Type")
If (rest.LastMethodSuccess = 0) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
Debug.Print "Content-Type: " & contentType