HTTPHeader
Return Type: String
Returns the entire HTTP header or a particular value if the parameter HeaderField is specified.
For Example:
Private Sub WebX1_FileRequest (Index As Integer, FileName As String)
' This returns the entire HTTP Header
Debug.Print WebX1.HTTPHeader(Index, "")
' This returns the data for the HTTP Header Field User-Agent
Debug.Print WebX1.HTTPHeader(Index, "User-Agent")
End Sub