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

ResolveEnd

Represents the end of the Resolve phase of routing. See note on ResolveStart for use of this experimental API.

      
      class ResolveEnd extends RouterEvent {
  constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
  urlAfterRedirects: string
  state: RouterStateSnapshot
  toString(): string

  // inherited from router/RouterEvent
  constructor(id: number, url: string)
  id: number
  url: string
}
    

Constructor

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

Parameters

id

Type: number.

url

Type: string.

urlAfterRedirects

Type: string.

state

Type: RouterStateSnapshot.

Properties

Property Description
urlAfterRedirects: string Declared in constructor.
state: RouterStateSnapshot Declared in constructor.

Methods

toString(): string
      
      toString(): string
    

Parameters

There are no parameters.

Returns

string