'Declaration Public Overloads Function GetDownloadStream( _ ByVal remoteFilename As String, _ ByVal offset As Long _ ) As Stream
'Usage Dim instance As FtpClient Dim remoteFilename As String Dim offset As Long Dim value As Stream value = instance.GetDownloadStream(remoteFilename, offset)
public Stream GetDownloadStream( string remoteFilename, long offset )
Parameters
- remoteFilename
- The filename of the file to retrieve. Some FTP servers may be case-sensitive!
- offset
- The byte offset (of the remote file) at which to start receiving data from the remote file.
Return Value
The data System.IO.Stream to read from