getStatusLine

String response.getStatusLine ( )

Description

Retrieve the status line of the response.

Parameters

This method does not receive any parameters.

Return Values

Returns the status line of the response, as a string.

Change Log

Version Description
4.5 Available for all editions.

Examples

Get the Status Line Text

 // Retrieve the status line of the response
 statusLine = response.getStatusLine();

See Also