INavigationClient interface 
Methods
| navigate | Navigates to other pages outside the web application i.e. the Identity Provider | 
| navigate | Navigates to other pages within the same web application Return false if this doesn't cause the page to reload i.e. Client-side navigation | 
Method Details
		navigateExternal(string, NavigationOptions)
	  
	Navigates to other pages outside the web application i.e. the Identity Provider
function navigateExternal(url: string, options: NavigationOptions): Promise<boolean>Parameters
- url
- 
				string 
- options
- NavigationOptions
Returns
Promise<boolean>
		navigateInternal(string, NavigationOptions)
	  
	Navigates to other pages within the same web application Return false if this doesn't cause the page to reload i.e. Client-side navigation
function navigateInternal(url: string, options: NavigationOptions): Promise<boolean>Parameters
- url
- 
				string 
- options
- NavigationOptions
Returns
Promise<boolean>