RawResponseHeaders

Contiene tutte le intestazioni nella risposta HTTP. Ciascuna intestazione è separata da una coppia CR/LF.

Sintassi

HTTPObject.RawResponseHeaders

Dove:

  • RawResponseHeaders è una stringa (lettura)
Esempio

Lo script invierà una richiesta http OPTIONS:

Function Main

Dim HTTPObj as Object

ip = "www.gfi.com"

port = 80

Set HTTPobj = HTTP.Connect (ip,port)

'impostazione del tipo di richiesta

HTTPobj.GetURL("/")

HTTPobj.Authentication = 1

HTTPobj.Verb = "OPTIONS"

'Invio della richiesta OPTIONS con intestazioni personalizzate

HTTPResponse = HTTPobj.SendRequest ()

echo HTTPobj.RawResponseHeaders

End Function