We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 2023.0.0
Directly invoking ISftpClient.Dispose() results in the following error:
[CS0121] The call is ambiguous between the following methods or properties: 'Renci.SshNet.IBaseClient.Dispose()' and 'System.IDisposable.Dispose()'
The following displays sample code to reproduce the compile time error.
ISftpClient sftpClient = new SftpClient(host, port, username, password); sftpClient.Dispose(); //This line results in the [CS0121] error
ISftpClient sftpClient = new SftpClient(host, port, username, password); ((IDisposable)sftpClient).Dispose();
The text was updated successfully, but these errors were encountered:
Thanks for raising. This was fixed by #1229 which will be in the next version.
Sorry, something went wrong.
The 2023.0.1 version has been released to Nuget: https://www.nuget.org/packages/SSH.NET/2023.0.1
No branches or pull requests
Version: 2023.0.0
Problem
Directly invoking ISftpClient.Dispose() results in the following error:
The following displays sample code to reproduce the compile time error.
Current Workaround
The text was updated successfully, but these errors were encountered: