HttpResponse
Class
A full HTTP response, including a typed response body (which may be null
if one was not returned).
API
Description
class HttpResponse<T> extends HttpResponseBase {}
body
T | null
The response body, or null
if one was not returned.
clone
3 overloads
@returns
HttpResponse<T>
@paramupdate
{ headers?: HttpHeaders | undefined; status?: number | undefined; statusText?: string | undefined; url?: string | undefined; }
@returns
HttpResponse<T>
@paramupdate
{ body?: V | null | undefined; headers?: HttpHeaders | undefined; status?: number | undefined; statusText?: string | undefined; url?: string | undefined; }
@returns
HttpResponse<V>
headers
All response headers.
status
number
Response status code.
statusText
string
Textual description of response status code, defaults to OK.
Do not depend on this.
url
string | null
URL of the resource retrieved, or null if not available.
ok
boolean
Whether the status code falls in the 2xx range.
Jump to details