Searching() public method

public Searching ( int searching ) : void
searching int
return void
        static void route_normal_journey(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.ScreenMainActionSearch();
            appSession.NavigateToSearching(getValue <long>(appScreenTimeUsed));
            appSession.Searching(getValue <int>(contentLoading));
            appSession.NavigateToResults(getValue <long>(appScreenTimeUsed));
            appSession.ScreenResultActionViewProfile();
            appSession.NavigateToProfile(getValue <long>(appScreenTimeUsed));
            appSession.Close(getValue <long>(appTimeUsed));
        }