WatchThis.Controllers.SlideshowDriver.GetTimerValue C# (CSharp) Method

GetTimerValue() private method

private GetTimerValue ( ) : double
return double
		private double GetTimerValue()
		{
			var time = (Model.SlideSeconds + Model.TransitionSeconds) * 1000;
			if (time < 100)
			{
				time = 100;
			}

			return time;
		}