Maximum Memory
Hi,
I used WinSCP for SFTP.
After all operations are done, I call
Should I call dispose?
Thank you.
Auth
Usage
I used WinSCP for SFTP.
SessionOptions
configuration looks like this. Everything is OK about transfer but memory goes up 100%.
After all operations are done, I call
Close()
not Dispose()
.
Should I call dispose?
Thank you.
Auth
SessionOptions sessionOptions = new SessionOptions { Protocol = Protocol.Sftp, HostName = _ftpServerUrl, UserName = _ftpUsername, Password = _ftpPassword, SshHostKeyPolicy = SshHostKeyPolicy.AcceptNew, PortNumber = ftpPort };
Usage