Verb

Determina il metodo di richiesta HTTP. Questa proprietà è impostata implicitamente quando vengono utilizzati i metodi GetURL e PostURL.

Sintassi

HTTPObject.Verb

Dove:

  • Verb è una stringa (esempio: Get)
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