Re: Authentication issues using .NET libraries
This issue has been added to the tracker:
https://winscp.net/tracker/1638
https://winscp.net/tracker/1638
using (Session session = new Session())
{
SessionOptions options = new SessionOptions
{
Protocol = Protocol.Webdav,
HostName = xxx.xxx.xxx.xxx,
UserName = "xxxxxxxxx",
WebdavRoot = "/files",
};
session.Open(options);
//unrelated code
}