Thank you very much.
That fixed the problem. Everything works fine now.
That fixed the problem. Everything works fine now.
WinSCP.exe
works fine.
WindSCPnet.dll
and found the issue. The SessionOptionsToOpenArguments()
-method in Session.cs
Uri-escapes the Password
using Uri.EscapeDataString()
. The problem is that the Uri.EscapeDataString()
-method returns %C2%A7
for the character §
instead of %A7
which is expected.
Uri.EscapeDataString()
-method to return %A7
instead of %C2%A7
?