NET SFTP Library
ResumeUploadStreamAsync(Stream,String,Object) Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > ResumeUploadStreamAsync Method : ResumeUploadStreamAsync(Stream,String,Object) Method
The local file stream
The FTP file name
Your custom object to be returned with Started, Progress, and Completed Events
Resume an upload from a local stream to an FTP file. It automatically starts at where it left off.
Syntax
'Declaration
 
Public Overloads Sub ResumeUploadStreamAsync( _
   ByVal localStream As System.IO.Stream, _
   ByVal ftpFileName As System.String, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As SFTP
Dim localStream As System.IO.Stream
Dim ftpFileName As System.String
Dim customObject As System.Object
 
instance.ResumeUploadStreamAsync(localStream, ftpFileName, customObject)
public void ResumeUploadStreamAsync( 
   System.IO.Stream localStream,
   System.string ftpFileName,
   System.object customObject
)
public procedure ResumeUploadStreamAsync( 
    localStream: System.IO.Stream;
    ftpFileName: System.String;
    customObject: System.TObject
); 
public function ResumeUploadStreamAsync( 
   localStream : System.IO.Stream,
   ftpFileName : System.String,
   customObject : System.Object
);
public: void ResumeUploadStreamAsync( 
   System.IO.Stream* localStream,
   System.string* ftpFileName,
   System.Object* customObject
) 
public:
void ResumeUploadStreamAsync( 
   System.IO.Stream^ localStream,
   System.String^ ftpFileName,
   System.Object^ customObject
) 

Parameters

localStream
The local file stream
ftpFileName
The FTP file name
customObject
Your custom object to be returned with Started, Progress, and Completed Events
Example
SFTP sftp = new SFTP(); //Trial Mode            
//SFTP sftp = new SFTP("place user name here", "place license key here");
 
// set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com"; // replace with your SFTP server
sftp.UserName  = "anonymous"; // replace with your user name
sftp.Password = "user@mail.com"; // replace with your password
 
Stream myStream = File.OpenRead("c:\\uploadfile1.txt");
sftp.ResumeUploadStreamAsync(myStream, "uploadfile1.txt");
 
while (sftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
 
myStream.Close();
Dim sftp As SFTP = New SFTP() 'Trial Mode
'Dim sftp As SFTP = New SFTP("place user name here", "place license key here");
 
' set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com" ' replace with your SFTP server
sftp.UserName  = "anonymous" ' replace with your user name
sftp.Password = "user@mail.com" ' replace with your password
 
Dim myStream As Stream = File.OpenRead("c:\uploadfile1.txt")
sftp.ResumeUploadStreamAsync(myStream, "uploadfile1.txt")
 
Do While sftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
 
myStream.Close()
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

SFTP Class
SFTP Members
Overload List