Code (HttpResponse function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
Line 4: | Line 4: | ||
code value in the status line of the | code value in the status line of the | ||
result of the most recent HTTP request. | result of the most recent HTTP request. | ||
Code returns only the code portion of the status line (for example, "200"). | <var>Code</var> returns only the code portion of the status line (for example, "200"). | ||
==Syntax== | ==Syntax== | ||
{{Template:HttpResponse:Code syntax}} | {{Template:HttpResponse:Code syntax}} |
Revision as of 21:24, 17 June 2011
Check HTTP status code of most recent request (HttpResponse class)
This method lets you check the HTTP status
code value in the status line of the
result of the most recent HTTP request.
Code returns only the code portion of the status line (for example, "200").
Syntax
%string = httpResponse:Code
Syntax terms
%code | A string, longstring, or numeric variable for the assignment of the current Code value of %httpresp. |
---|---|
%httpresp | A reference to an HTTPResponse object that was returned by a Get, Post, or Send method of an HTTPRequest object. |