AppActs.API.DataUploader.AppSession.NavigateToSettings C# (CSharp) Method

NavigateToSettings() public method

public NavigateToSettings ( long timeUsedPrevScreen ) : void
timeUsedPrevScreen long
return void
        public void NavigateToSettings(long timeUsedPrevScreen)
        {
            this.navigateToNextScreen("Settings", this.lastScreen, timeUsedPrevScreen);
        }

Usage Example

Ejemplo n.º 1
0
        static void route_settings_search_error(Device device, DateTime timeWhenUsed, string version)
        {
            AppSession appSession = new AppSession(device.DeviceId, appId, timeWhenUsed, version, deviceService);

            appSession.Open();
            appSession.NavigateToSplash();
            appSession.NavigateToMain(getValue <long>(appScreenTimeUsed));
            appSession.NavigateToSettings(getValue <long>(appScreenTimeUsed));
            appSession.NavigateToSearching(getValue <long>(appScreenTimeUsed));
            appSession.Error("Unexcepted exception", "Searching", 292838833, 20201111, 22);
            appSession.Close(getValue <long>(appTimeUsed));
        }
All Usage Examples Of AppActs.API.DataUploader.AppSession::NavigateToSettings