List of HttpResponse methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
(Automatically generated page update)
 
(3 intermediate revisions by one other user not shown)
Line 13: Line 13:
<tr><td valign="top">[[HeaderValue (HttpResponse function)|HeaderValue]]</td><td valign="top">HTTP response header value</td></tr>
<tr><td valign="top">[[HeaderValue (HttpResponse function)|HeaderValue]]</td><td valign="top">HTTP response header value</td></tr>
<tr><td valign="top">[[Message (HttpResponse function)|Message]]</td><td valign="top">Return code message of most recent request</td></tr>
<tr><td valign="top">[[Message (HttpResponse function)|Message]]</td><td valign="top">Return code message of most recent request</td></tr>
<tr><td valign="top">[[New (HttpResponse constructor)|New]]</td><td valign="top">Create a new HttpResponse object</td></tr>
<tr><td valign="top">[[ParseXml (HttpResponse function)|ParseXml]]</td><td valign="top">Deserialize response data to XmlDoc</td></tr>
<tr><td valign="top">[[ParseXml (HttpResponse function)|ParseXml]]</td><td valign="top">Deserialize response data to XmlDoc</td></tr>
<tr><td valign="top">[[Print (HttpResponse subroutine)|Print]]</td><td valign="top">Print useful debug information about this object</td></tr>
<tr><td valign="top">[[Print (HttpResponse subroutine)|Print]]</td><td valign="top">Print useful debug information about this object</td></tr>
Line 24: Line 23:
<table class="list"><tr>
<table class="list"><tr>
<td valign="top"><ul style="margin-top:0px;">
<td valign="top"><ul style="margin-top:0px;">
<li>[[HttpRequest class]]
<li>[[HttpResponse class]]
<li>[[HttpResponse class]]
</ul></td>
</ul></td>
<td valign="top"><ul style="margin-top:0px;">
<td valign="top"><ul style="margin-top:0px;">
<li>[[List of HttpRequest methods]]
<li>[[List of HTTP Helper methods]]
</ul></td>
<td valign="top"><ul style="margin-top:0px;">
<li>[[HttpRequest methods syntax]]
<li>[[HttpResponse methods syntax]]
<li>[[HttpResponse methods syntax]]
</ul></td>
</ul></td>
</tr>
</tr>
</table>
</table>
[[Category:Lists of methods]]

Latest revision as of 20:43, 16 June 2014

The following are the available HttpResponse class methods.

MethodDescription
CodeCheck HTTP status code of most recent request
ContentGet raw HTTP response data
ContentToStringlistHTTP response data split into lines
HeaderCountNumber of HTTP response headers
HeaderNamesList of HTTP response header names
HeaderValueHTTP response header value
MessageReturn code message of most recent request
ParseXmlDeserialize response data to XmlDoc
PrintPrint useful debug information about this object
StatusLineStatus line of most recent request
SuccessCheck status code value of most recent request
URLURL from which the response was obtained

See also