FtpClientConnection.Connect 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
打开到服务器的连接并返回指示连接结果的值。
public:
bool Connect();
public bool Connect ();
member this.Connect : unit -> bool
Public Function Connect () As Boolean
返回
如果建立连接,则为 true。 如果未建立连接,则为 false。
示例
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()