Success (HttpResponse function)

From m204wiki
Revision as of 19:02, 20 June 2011 by JAL2 (talk | contribs) (→‎Syntax terms)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Check status code value of most recent request (HttpResponse class)

The Success method lets you check the status code value in the status line of the result of the most recent Get, Post, or Send operation.

Syntax

%number = httpResponse:Success

Syntax terms

%number A numeric variable for the assignment of the Success value of httpResponse. Success returns 1 (True) if the HTTP status code is in the 200s (success range), and it returns 0 (False) otherwise.
httpResponse A reference to an HttpResponse object that was returned by a Get, Post, or Send method of an HttpRequest object.

Usage notes

  • If Success returns 1 (True), content was retrieved and is available via the Content and ParseXml methods.

See also