Gets the OutputStream from the data connection.

Namespace: Jscape.Ftp
Assembly: Jscape.Ftp (in Jscape.Ftp.dll) Version: 2.4.5.0

Syntax

C#
public Stream GetOutputStream(
	string fileName,
	bool append,
	long off
)
Visual Basic
Public Function GetOutputStream ( _
	fileName As String, _
	append As Boolean, _
	off As Long _
) As Stream
Visual C++
public:
Stream^ GetOutputStream(
	String^ fileName, 
	bool append, 
	long long off
)

Parameters

fileName
Type: System..::..String
The name of the file.
append
Type: System..::..Boolean
CopyC#
true
to append to remote file on FTP server,
CopyC#
false
otherwise
off
Type: System..::..Int64
file offset

Return Value

a Stream from the data connection instance.

See Also