C# Class Cimbalino.Phone.Toolkit.Services.NavigationService

Represents an implementation of the INavigationService.
Inheritance: INavigationService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method Description
GoBack ( ) : void

Navigates to the most recent available entry in the back navigation history.

NavigateTo ( Uri source ) : void

Navigates to the content specified by the uniform resource identifier (URI).

NavigateTo ( string source ) : void

Navigates to the content specified by the uniform resource identifier (URI).

RemoveBackEntry ( ) : void

Removes the most recent available entry from the back stack.

Private Methods

Method Description
EnsureNavigationService ( ) : bool
GetNavigationServiceFromPage ( PhoneApplicationPage page ) : bool

Method Details

GoBack() public method

Navigates to the most recent available entry in the back navigation history.
public GoBack ( ) : void
return void

NavigateTo() public method

Navigates to the content specified by the uniform resource identifier (URI).
public NavigateTo ( Uri source ) : void
source System.Uri A initialized with the URI for the desired content.
return void

NavigateTo() public method

Navigates to the content specified by the uniform resource identifier (URI).
public NavigateTo ( string source ) : void
source string The URI for the desired content.
return void

RemoveBackEntry() public method

Removes the most recent available entry from the back stack.
public RemoveBackEntry ( ) : void
return void