'Declaration Public Overloads Sub ReceiveFile( _ ByVal remoteFilename As String, _ ByVal offset As Long, _ ByVal destination As Stream _ )
'Usage Dim instance As FtpClient Dim remoteFilename As String Dim offset As Long Dim destination As Stream instance.ReceiveFile(remoteFilename, offset, destination)
public void ReceiveFile( string remoteFilename, long offset, Stream destination )
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.
- destination
- A reference to the System.IO.Stream to which to receive the file.