excuse me
i use Rebex Total Pack for .NET (trial)
How do I make sure to use SFTP upload API to Transfer Data from client to Server is Using the SSH procotl to encrypt the File
Imports Rebex.Net
Public Class Form1
Dim client As New Sftp
Private Sub btnConnect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConnect.Click
client.Connect("192.168.5.59")
client.Login("Sftp", "test123")
client.PutFile("D:\temp\1.txt", "1.txt")
End Sub
End Sub
End Class