AzureMobileServicesLab.WP8.MainPage.OnNavigatedTo C# (CSharp) Method

OnNavigatedTo() protected method

protected OnNavigatedTo ( System.Windows.Navigation.NavigationEventArgs e ) : void
e System.Windows.Navigation.NavigationEventArgs
return void
        protected override async void OnNavigatedTo(NavigationEventArgs e)
        {
            if (e.NavigationMode == NavigationMode.New)
            {
                // TODO: Implement login
                // http://www.windowsazure.com/en-us/documentation/articles/mobile-services-windows-phone-get-started-users/?fb=sv-se
            }

            await Refresh();
        }