SFTPStream Class

Implements Stream capabilities over remote file through SFTP protocol.

For a list of all members of this type, see SFTPStream Members.

System.Object
   MarshalByRefObject
      System.IO.Stream
         SFTPStream

 

[Visual Basic]
Public Class SFTPStream
[C#]
public class SFTPStream

Remarks

A stream is an abstraction of a sequence of bytes, such as a file, an input/output device, an inter-process communication pipe, or a TCP/IP socket. The Stream class and its derived classes provide a generic view of these different types of input and output, isolating the programmer from the specific details of the operating system and the underlying devices.

WeOnlyDo SFTPStream provides Stream capabilities over remote file through SFTP protocol. You have transparent, encrypted access to remote file, just as you would open file on local disk/share.

An application can query a stream for its capabilities by using the CanRead, CanWrite, and CanSeek properties.

The Read and Write methods read and write data in a variety of formats. For streams that support seeking, use the Seek and SetLength methods and the Position and Length properties to query and modify the current position and length of a stream.

Requirements

Namespace: WeOnlyDo.Client Namespace

Assembly: WeOnlyDo.Client.SFTP.dll

See Also

SFTPStream Members | WeOnlyDo.Client Namespace