This is an old revision of the document!

Session.PutFile Method

Uploads data from System.IO.Stream to a remote file.

This feature is available only in the latest beta release.

For an efficient upload from a physical local file, use Session.PutFileToDirectory and similar methods instead.

Syntax

C#
public void PutFile(
    System.IO.Stream stream,
    string remoteFilePath,
    TransferOptions options = null
)
VB.NET
Public Sub PutFile(
    stream As System.IO.Stream,
    remoteFilePath As String,
    Optional options As TransferOptions = Nothing
)

Parameters

Name Description
System.IO.Stream stream The Stream to upload the data from. The implementation needs to support only the Read method. The stream is read until the Read method returns zero or throws an exception. The method does not close nor dispose the stream.
string remoteFilePath Full path to a remote file to upload the data to.
TransferOptions options Transfer options. Defaults to null, what is equivalent to new TransferOptions().

Remarks

Event Session.FileTransferred is raised for the upload. Also raises Session.FileTransferProgress throughout the transfer.

Last modified: by martin