FtpClientConnection.Connect Method
Opens the connection to the server and returns a value that indicates the result of the connection.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
语法
声明
Public Function Connect As Boolean
public bool Connect ()
public:
bool Connect ()
public boolean Connect ()
public function Connect () : boolean
返回值
true if the connection is established. false if the connection was not established.
示例
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()
线程安全
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
FtpClientConnection Class
FtpClientConnection Members
Microsoft.SqlServer.Dts.Runtime Namespace