Reframework config file reading

In config file of reframework the delay items have value as 1000,1500,6000 for delay short, delay medium, delay long. How to convert these value to timespan type

You can used an assign and give this in value :
TimeSpan.FromMilliseconds(convert.ToDouble((Config(“TimeoutMedium”).ToString)))

for exemple.I’m not sure if that can help you…