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

GuardsCheckStart

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

Represents the start of the Guard phase of routing.

Overview

      
      class GuardsCheckStart 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