Thank you
I can do it. Thank you.
Session.SessionLogPath
and Session.DebugLogPath
and post both logs from both tasks.
//Setup session options
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Webdav,
HostName = "pppp.pppp.com",
RootPath = "/Upload",
UserName = "pxxxxxxxxx",
Password = "@ppppppp2024",
WebdavSecure = true,
TlsHostCertificateFingerprint = "xxxxxxxxxxxxxxxxxx",
Timeout = new TimeSpan(0, 2, 0)
};
using (Session session = new Session())
{
// Connect
//session.ReconnectTime = new TimeSpan(0, 0, 30);
session.Open(sessionOptions);
Console.WriteLine("session Open");
.
.
.
////Close
session.Close();
Console.WriteLine("session Close");
}