Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
This site is no longer updated.Head to Angular.devHome
/

This is the archived documentation for Angular v17. Please visit angular.dev to see this page for the current version of Angular.

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.

Note: The FetchBackend doesn't support progress report on uploads.

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.