Hi ,
I am getting the error mentioned in photo while adding the custom delay from config file in the ‘Delay Activity’
Do let me know the how to resolve the issue?
Thanks in advance!
Hi ,
I am getting the error mentioned in photo while adding the custom delay from config file in the ‘Delay Activity’
Do let me know the how to resolve the issue?
Thanks in advance!
Try the below syntax:
TimeSpan.FromSeconds(Cint(in_Config("CustomDelay").ToString))
Output variable will be of the datatype System.TimeSpan
Hope it helps!!
hey you added .Tostring is out of the bracket
try to pass like below
TimeSpan.FromSeconds(CInt(in_Config(“CustomDelay”).ToString))
Happy Automation!!