dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / SshOptions Class / SshOptions Constructor / SshOptions Constructor(String,Int32,String,String,String,String,String,SshAuthenticationType)
Name or ip address of SSH server.
Number of port on SSH server to connect.
User id on SSH server.
User password on SSH server.
List of ciphers that client agrees to use.
Location of the private key to use.
Passphrase for the client key.
Client authentication methods.

In This Topic
    SshOptions Constructor(String,Int32,String,String,String,String,String,SshAuthenticationType)
    In This Topic
    Initializes a new instance of the SshOptions class and initializes its properties.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal host As String, _
       ByVal port As Integer, _
       ByVal user As String, _
       ByVal password As String, _
       ByVal cipherList As String, _
       ByVal privateKey As String, _
       ByVal passphrase As String, _
       ByVal authenticationType As SshAuthenticationType _
    )
    public SshOptions( 
       string host,
       int port,
       string user,
       string password,
       string cipherList,
       string privateKey,
       string passphrase,
       SshAuthenticationType authenticationType
    )

    Parameters

    host
    Name or ip address of SSH server.
    port
    Number of port on SSH server to connect.
    user
    User id on SSH server.
    password
    User password on SSH server.
    cipherList
    List of ciphers that client agrees to use.
    privateKey
    Location of the private key to use.
    passphrase
    Passphrase for the client key.
    authenticationType
    Client authentication methods.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also