Compartir a través de


FtpClientConnection.Connect Método

Opens the connection to the server and returns a value that indicates the result of the connection.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
Public Function Connect As Boolean
'Uso
Dim instance As FtpClientConnection 
Dim returnValue As Boolean 

returnValue = instance.Connect()
public bool Connect()
public:
bool Connect()
member Connect : unit -> bool
public function Connect() : boolean

Valor devuelto

Tipo: System.Boolean
true if the connection is established. false if the connection was not established.

Ejemplos

The following code example creates an FtpClientConnection, and after acquiring the connection, connects to the server using Connect.

Package pkg = new Package();
FtpClientConnection ftp = null;
Connections conns = pkg.Connections;
ConnectionManager cm = conns.Add("FTP");

object myConnection = cm.AcquireConnection(null);
ftp = new FtpClientConnection(myConnection );

// Connect up to the FTP server.  
ftp.Connect();
Dim pkg As Package =  New Package() 
Dim ftp As FtpClientConnection =  Nothing 
Dim conns As Connections =  pkg.Connections 
Dim cm As ConnectionManager =  conns.Add("FTP") 
 
Dim myConnection As Object =  cm.AcquireConnection(Nothing) 
ftp = New FtpClientConnection(myConnection)
 
' Connect up to the FTP server.  
ftp.Connect()

Vea también

Referencia

FtpClientConnection Clase

Espacio de nombres Microsoft.SqlServer.Dts.Runtime