C# Class DataExport.SftpClientProxy

This class is a wrapper around the actual SftpClient object so that we can create a mock object to simulate SFTP uploads for unit testing.
Inheritance: Renci.SshNet.SftpClient, ISftpClient
Show file Open project: BellevueCollege/DataExport

Public Methods

Method Description
SftpClientProxy ( ConnectionInfo connectionInfo ) : System
SftpClientProxy ( string host, int port, string username ) : System
SftpClientProxy ( string host, int port, string username, string password ) : System
SftpClientProxy ( string host, string username ) : System
SftpClientProxy ( string host, string username, string password ) : System

Method Details

SftpClientProxy() public method

public SftpClientProxy ( ConnectionInfo connectionInfo ) : System
connectionInfo Renci.SshNet.ConnectionInfo
return System

SftpClientProxy() public method

public SftpClientProxy ( string host, int port, string username ) : System
host string
port int
username string
return System

SftpClientProxy() public method

public SftpClientProxy ( string host, int port, string username, string password ) : System
host string
port int
username string
password string
return System

SftpClientProxy() public method

public SftpClientProxy ( string host, string username ) : System
host string
username string
return System

SftpClientProxy() public method

public SftpClientProxy ( string host, string username, string password ) : System
host string
username string
password string
return System