This is the archived documentation for Angular v5. Please visit angular.io to see documentation for the current version of Angular.

ResolveStart

npm Package @angular/router
Module import { ResolveStart } from '@angular/router';
Source router/src/events.ts

Represents the start of the Resolve phase of routing. The timing of this event may change, thus it's experimental. In the current iteration it will run in the "resolve" phase whether there's things to resolve or not. In the future this behavior may change to only run when there are things to be resolved.

Overview

      
      class ResolveStart extends RouterEvent {
  constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
  urlAfterRedirects: string
  state: RouterStateSnapshot
  toString(): string
  // inherited from router/RouterEvent
  id: number
  url: string
}
    

Constructor

      
      constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
    

Members

      
      urlAfterRedirects: string
    


      
      toString(): string