HttpResponseBase
class
Base class for both HttpResponse
and HttpHeaderResponse
.
abstract class HttpResponseBase {
constructor(init: {...}, defaultStatus: number = 200, defaultStatusText: string = 'OK')
headers: HttpHeaders
status: number
statusText: string
url: string | null
ok: boolean
type: HttpEventType.Response | HttpEventType.ResponseHeader
}
Subclasses
Constructor
Super-constructor for all responses. | ||||||
|
init | Type: |
defaultStatus | Type: Optional. Default is |
defaultStatusText | Type: Optional. Default is |
The single parameter accepted is an initialization hash. Any properties of the response passed there will override the default values.
Properties
Property | Description |
---|---|
headers: HttpHeaders |
Read-only. All response headers. |
status: number |
Read-only. Response status code. |
statusText: string |
Read-only. Textual description of response status code. Do not depend on this. |
url: string | null |
Read-only. URL of the resource retrieved, or null if not available. |
ok: boolean |
Read-only. Whether the status code falls in the 2xx range. |
type: HttpEventType.Response | HttpEventType.ResponseHeader |
Read-only. Type of the response, narrowed to either the full response or the header. |
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v6.angular.io/api/common/http/HttpResponseBase