Creation/Dev/Script/Client/THTTPRequest: Difference between revisions
From Graal Bible
mNo edit summary |
m (→Variables) |
||
Line 3: | Line 3: | ||
==Variables== | ==Variables== | ||
<table border="1" cellpadding="4"> | |||
<tr> | |||
<td>Name</td> | |||
<td>Type</td> | |||
<td>Description</td> | |||
</tr> | |||
<tr> | |||
<td>address</td> | |||
<td>string (read only)</td> | |||
<td>address of the requested server</td> | |||
</tr> | |||
<tr> | |||
<td>contentlanguage</td> | |||
<td>string (read only)</td> | |||
<td>content language</td> | |||
</tr> | |||
<tr> | |||
<td>contenttype</td> | |||
<td>string (read only)</td> | |||
<td>content type (eg: text/html)</td> | |||
</tr> | |||
<tr> | |||
<td>downloadcomplete</td> | |||
<td>boolean (read only)</td> | |||
<td>download is completed</td> | |||
</tr> | |||
<tr> | |||
<td>file</td> | |||
<td>string (read only)</td> | |||
<td>file name of requested URL</td> | |||
</tr> | |||
<tr> | |||
<td>fulldata</td> | |||
<td>string (read only)</td> | |||
<td>file data including HTTP headers</td> | |||
</tr> | |||
<tr> | |||
<td>lastmodified</td> | |||
<td>string (read only)</td> | |||
<td>last modified info for file</td> | |||
</tr> | |||
<tr> | |||
<td>port</td> | |||
<td>integer (read only)</td> | |||
<td>port of the requested server</td> | |||
</tr> | |||
<tr> | |||
<td>returncode</td> | |||
<td>integer (read only)</td> | |||
<td>HTTP return code (eg: 200)</td> | |||
</tr> | |||
<tr> | |||
<td>returnmessage</td> | |||
<td>string (read only)</td> | |||
<td>HTTP return message (eg: OK)</td> | |||
</tr> | |||
<tr> | |||
<td>server</td> | |||
<td>string (read only)</td> | |||
<td>requested server version</td> | |||
</tr> | |||
</table> |
Revision as of 04:10, 27 January 2006
THTTPRequest
Inherits TGraalVar
Variables
Name | Type | Description |
address | string (read only) | address of the requested server |
contentlanguage | string (read only) | content language |
contenttype | string (read only) | content type (eg: text/html) |
downloadcomplete | boolean (read only) | download is completed |
file | string (read only) | file name of requested URL |
fulldata | string (read only) | file data including HTTP headers |
lastmodified | string (read only) | last modified info for file |
port | integer (read only) | port of the requested server |
returncode | integer (read only) | HTTP return code (eg: 200) |
returnmessage | string (read only) | HTTP return message (eg: OK) |
server | string (read only) | requested server version |