'Declaration Public Overloads Sub ReceiveFile( _ ByVal remoteFilename As String, _ ByVal destination As Stream _ )
'Usage Dim instance As FtpClient Dim remoteFilename As String Dim destination As Stream instance.ReceiveFile(remoteFilename, destination)
public void ReceiveFile( string remoteFilename, Stream destination )
Parameters
- remoteFilename
- The filename of the file to retrieve. Some FTP servers may be case-sensitive!
- destination
- A reference to the System.IO.Stream to which to receive the file.