SessionOptions parametter TimeoutInMilliseconds didn't work
Hi,I'm working with VisualStudio 2017 in C# and when I try to set a timeout like that:
The session's timeout still 60000 (default value)
but when I use :
It works perfectly (session's timeout = 120000) :)
Maybe you have a bug there ;)
SessionOptions sessionOpt = new SessionOptions { Protocol = Protocol.Scp, [...] TimeoutInMilliseconds = 120000, //2min [...] }; mysession.Open(sessionOpt);
The session's timeout still 60000 (default value)
but when I use :
mysession.Timeout = new TimeSpan(0,2,0); //2min
It works perfectly (session's timeout = 120000) :)
Maybe you have a bug there ;)