NET FTP Library
ResumeUploadFileAsync(String,String,Object) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > ResumeUploadFileAsync Method : ResumeUploadFileAsync(String,String,Object) Method
The full path of the file, including the file name
The full path of the FTP file, including the ftp directory and file name
Your custom object to be returned with Started, Progress, and Completed Events
Resume an upload for a file asynchronously using FTP. It automatically resumes where it left off.
Syntax
'Declaration
 
Public Overloads Sub ResumeUploadFileAsync( _
   ByVal localFilePath As System.String, _
   ByVal ftpFileName As System.String, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As FTP
Dim localFilePath As System.String
Dim ftpFileName As System.String
Dim customObject As System.Object
 
instance.ResumeUploadFileAsync(localFilePath, ftpFileName, customObject)
public void ResumeUploadFileAsync( 
   System.string localFilePath,
   System.string ftpFileName,
   System.object customObject
)
public procedure ResumeUploadFileAsync( 
    localFilePath: System.String;
    ftpFileName: System.String;
    customObject: System.TObject
); 
public function ResumeUploadFileAsync( 
   localFilePath : System.String,
   ftpFileName : System.String,
   customObject : System.Object
);
public: void ResumeUploadFileAsync( 
   System.string* localFilePath,
   System.string* ftpFileName,
   System.Object* customObject
) 
public:
void ResumeUploadFileAsync( 
   System.String^ localFilePath,
   System.String^ ftpFileName,
   System.Object^ customObject
) 

Parameters

localFilePath
The full path of the file, including the file name
ftpFileName
The full path of the FTP file, including the ftp directory and file name
customObject
Your custom object to be returned with Started, Progress, and Completed Events
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
ftp.ResumeUploadFileAsync("c:\\uploadfile1.txt", "uploadfile1.txt");
 
while (ftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
ftp.ResumeUploadFileAsync("c:\uploadfile1.txt", "uploadfile1.txt")
 
Do While ftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members
Overload List