Set of HTTP variable types
Source position: httpdefs.pp line 126
type THTTPVariableTypes = set of ( |
||
hvUnknown, |
|
Unknown or unspecified variable type |
hvHTTPVersion, |
|
HTTP protocol version |
hvMethod, |
|
HTTP request method |
hvCookie, |
|
Cookie header from request |
hvSetCookie, |
|
Set-Cookie header field variable |
hvXRequestedWith, |
|
X-Requested-With header field variable |
hvPathInfo, |
|
PATH_INFO environment variable |
hvPathTranslated, |
|
PATH_TRANSLATED environment variable |
hvRemoteAddress, |
|
REMOTE_ADDR environment variable |
hvRemoteHost, |
|
REMOTE_HOST environment variable |
hvScriptName, |
|
SCRIPT_NAME environment variable |
hvServerPort, |
|
SERVER_PORT environment variable |
hvURL, |
|
Complete request URL variable |
hvQuery, |
|
QUERY_STRING environment variable |
hvContent |
|
Request body content |
); |
THTTPVariableTypes is a set type based on THTTPVariableType enumeration. It allows specification of multiple HTTP variable types simultaneously.
|
HTTP variable type enumeration |