Skip to main content

Accessing Other Information about the Response

Accessing Other Information about the Response

The %Net.HttpResponseOpens in a new tab class provides properties that store other specific parts of the HTTP response:

  • StatusLine stores the HTTP status line, which is the first line of the response.

  • StatusCode stores the HTTP status code.

  • ReasonPhrase stores the human-readable reason that corresponds to StatusCode.

  • ContentInfo stores additional information about the response body.

  • ContentType stores the value of the Content-Type: header.

  • HttpVersion indicates the version of HTTP that is supported by the web server that sent the response.

FeedbackOpens in a new tab