Catel.Services.Test.LocationService.OnTimerTick C# (CSharp) Method

OnTimerTick() private method

Called when the timer reaches another tick.
private OnTimerTick ( object data ) : void
data object The data.
return void
        private void OnTimerTick(object data)
        {
            if (ExpectedLocations.Count > 0)
            {
                ProceedToNextLocation();
            }
        }