Help Angular by taking a 1 minute survey!Go to surveyHome

HttpEventType

Type enumeration for the different kinds of HttpEvent.

      
      enum HttpEventType {
  Sent
  UploadProgress
  ResponseHeader
  DownloadProgress
  Response
  User
}
    

Members

Member Description
Sent

The request was sent out over the wire.

UploadProgress

An upload progress event was received.

ResponseHeader

The response status code and headers were received.

DownloadProgress

A download progress event was received.

Response

The full response including the body was received.

User

A custom event from an interceptor or a backend.