'Declaration Public Overloads Function GetUploadStream( _ ByVal remoteFilename As String, _ ByVal append As Boolean _ ) As Stream
'Usage Dim instance As FtpClient Dim remoteFilename As String Dim append As Boolean Dim value As Stream value = instance.GetUploadStream(remoteFilename, append)
public Stream GetUploadStream( string remoteFilename, bool append )
Parameters
- remoteFilename
- The filename of the file to write to. Some FTP servers may be case-sensitive!
- append
- true if existing data should be appended to; false otherwise.
Return Value
The data System.IO.Stream to write to.