On this page
ResolveStart
class  final 
An event triggered at the start of the Resolve phase of routing.
class ResolveStart extends RouterEvent {
  constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
  type: EventType.ResolveStart
  urlAfterRedirects: string
  state: RouterStateSnapshot
  toString(): string
  // inherited from router/RouterEvent
  constructor(id: number, url: string)
  id: number
  url: string
}
   See also
Description
Runs in the "resolve" phase whether or not there is anything to resolve. In future, may change to only run when there are things to be resolved.
Constructor
        
          | 
      
id | 
            number | 
            |
url | 
            string | 
            |
urlAfterRedirects | 
            string | 
            |
state | 
            RouterStateSnapshot | 
            
Properties
| Property | Description | 
|---|---|
type: EventType.ResolveStart | 
       Read-Only | 
urlAfterRedirects: string | 
       Declared in Constructor | 
state: RouterStateSnapshot | 
       Declared in Constructor | 
Methods
| 
         
         toString()
          | 
      
|---|
        
          | 
      
© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://angular.io/api/router/ResolveStart