HttpHeaderResponse

From Get docs
< @angular/common‎ | httpAngular/docs/9/api/common/http/httpheaderresponse


HttpHeaderResponse

class

A partial HTTP response which only includes the status and header data, but no response body.

See more...

class HttpHeaderResponse extends HttpResponseBase {
  constructor(init: { headers?: HttpHeaders; status?: number; statusText?: string; url?: string; } = {})
  type: HttpEventType.ResponseHeader
  clone(update: { headers?: HttpHeaders; status?: number; statusText?: string; url?: string; } = {}): HttpHeaderResponse

  // inherited from common/http/HttpResponseBase
  constructor(init: { headers?: HttpHeaders; status?: number; statusText?: string; url?: string; }, defaultStatus: number = 200, defaultStatusText: string = 'OK')
  headers: HttpHeaders
  status: number
  statusText: string
  url: string | null
  ok: boolean
  type: HttpEventType.Response | HttpEventType.ResponseHeader
}

Description

HttpHeaderResponse is a HttpEvent available on the response event stream, only when progress events are requested.

Constructor

Create a new HttpHeaderResponse with the given parameters.

constructor(init: { headers?: HttpHeaders; status?: number; statusText?: string; url?: string; } = {})

Parameters
init object Optional. Default is {}.


Properties

Property Description
type: HttpEventType.ResponseHeader Read-Only

Methods

Copy this HttpHeaderResponse, overriding its contents with the given parameter hash.

clone(update: { headers?: HttpHeaders; status?: number; statusText?: string; url?: string; } = {}): HttpHeaderResponse

Parameters
update object Optional. Default is {}.
Returns

HttpHeaderResponse



© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v9.angular.io/api/common/http/HttpHeaderResponse