Overload | Description |
---|---|
BeginConnect(String,AsyncCallback,Object) | Begins the connection process of the FTP client to an FTP server on port 21. Don't forget to call EndConnect! |
BeginConnect(String,AuthenticationMethod,VerificationFlags,Certificate,AsyncCallback,Object) | Begins the connection process of the FTP client to a secure FTP server on port 21. Don't forget to call EndConnect! Note: This method is not available in Xceed FTP for .NET Compact Framework because this product does not support Secure FTP. |
BeginConnect(String,Int32,AsyncCallback,Object) | Begins the connection process of the FTP client to an FTP server using the specified hostname and port. Don't forget to call EndConnect! |
BeginConnect(String,Int32,AuthenticationMethod,VerificationFlags,Certificate,AsyncCallback,Object) | Begins the connection process of the FTP client to a secure FTP server using the specified hostname and port. Don't forget to call EndConnect! Note: This method is not available in Xceed FTP for .NET Compact Framework because this product does not support Secure FTP. |
BeginConnect(IPEndPoint,AsyncCallback,Object) | Begins the connection of the FTP client to an FTP server using the specified System.Net.IPEndPoint (IP address and port). Don't forget to call EndConnect! |