ResolveStart

class

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

state: RouterStateSnapshot

toString(): string

© 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v5.angular.io/api/router/ResolveStart