WinRTXamlToolkit.Controls.AlternativePage.OnNavigatingToInternalAsync C# (CSharp) Method

OnNavigatingToInternalAsync() private method

The last call before page transition occurs, but after the page has been added to visual tree. An opportunity to wait for some limited loading to complete before the transition animation is played.
private OnNavigatingToInternalAsync ( AlternativeNavigationEventArgs e ) : System.Threading.Tasks.Task
e AlternativeNavigationEventArgs
return System.Threading.Tasks.Task
        internal async Task OnNavigatingToInternalAsync(AlternativeNavigationEventArgs e)
        {
            this.NavigationState = NavigationState.NavigatingTo;
            await OnNavigatingToAsync(e);
        }