Click or drag to resize

BreakMinimumTime Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Minimum time to be spent at the Break. During route optimization, if the minimum time exceeds the average time, it will be used as the time spent at the stop instead of the average time.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public TimeSpan MinimumTime { get; set; }

Property Value

Type: TimeSpan
Examples
C#
Break br1 = new Break(33.59142,-117.73433);
br1.MinimumTime = new TimeSpan(0,10,0);

Break br2 = new Break(33.59142,-117.73433);
br2.AverageTime = new TimeSpan(0,5,0);
br2.MinimumTime = new TimeSpan(0,10,0);

Break br3 = new Break(33.59142,-117.73433);
br3.AverageTime = new TimeSpan(0,20,0);
br3.MinimumTime = new TimeSpan(0,10,0);

// During route optimization the time spent at the stop for br1 is 10 mins.
// During route optimization the time spent at the stop for br2 is 10 mins.
// During route optimization the time spent at the stop for br3 is 20 mins.
See Also