StatusLine (HttpResponse function)

From m204wiki
Revision as of 06:51, 19 June 2011 by Goff (talk | contribs) (match syntax table to syntax template; edits, tags and links)
Jump to navigation Jump to search

Status line of most recent request (HttpResponse class)

The StatusLine method lets you check the HTTP status line of the result of the most recent Get, Post, or Send operation. StatusLine returns the whole HTTP status line, which consists of a code, a blank, and a message (for example, "200 OK").

Syntax

%string = httpResponse:StatusLine

Syntax terms

%string A string or longstring variable for the assignment of the StatusLine value of httpResponse.
httpResponse A reference to an HttpResponse object that was returned by a Get, Post, or Send method of an HttpRequest object.

See also