Catel.MVVM.Navigation.NavigationAdapter.OnNavigatedEvent C# (CSharp) Method

OnNavigatedEvent() public method

Called when the Navigating event is invoked.
This method is public due to the fact that weak events are used. Otherwise, the navigation completed events could not be handled (because we unsubscribed from the RootFrame) when navigating away to prevent memory leaks. Please, do not call this method yourself, otherwise you can seriously ruin your apps.
public OnNavigatedEvent ( object sender, System.Windows.Navigation.NavigationEventArgs e ) : void
sender object The sender.
e System.Windows.Navigation.NavigationEventArgs The instance containing the event data.
return void
        public void OnNavigatedEvent(object sender, NavigationEventArgs e)
        {
            var eventArgs = new NavigatedEventArgs(e.Uri.ToString(), NavigationMode.Unknown);
            HandleNavigatedEvent(eventArgs);
        }
    }