Overload | Description |
---|---|
BeginSendFile(String,AsyncCallback,Object) | Begins the process of sending the specified file to the FTP server's current working folder and stores it using the same filename. Don't forget to call EndSendFile! |
BeginSendFile(String,Boolean,AsyncCallback,Object) | Begins the process of sending the specified file to the FTP server's current working folder using the same filename and indicating if it should append itself to the remote file if it already exists. Don't forget to call EndSendFile! |
BeginSendFile(String,String,AsyncCallback,Object) | Begins the process of sending the specified file to the FTP server's current working folder and stores it using the specified filename. Don't forget to call EndSendFile! |
BeginSendFile(String,String,Boolean,AsyncCallback,Object) | Begins the process of sending the specified file to the FTP server's current working folder, indicating if it should append itself to the remote file if it already exists, and stores it using the specified filename. Don't forget to call EndSendFile! |
BeginSendFile(Stream,String,Boolean,AsyncCallback,Object) | Begins the process of sending the data from the specified System.IO.Stream to the FTP server's current working folder, indicating if it should append itself to the remote file if it already exists, and stores it using the specified filename. Don't forget to call EndSendFile! |
BeginSendFile(Stream,String,AsyncCallback,Object) | Begins the process of sending the data from the specified System.IO.Stream to the FTP server's current working folder. Don't forget to call EndSendFile! |