NET FTP Library
PutAscii(Stream,String,Boolean) Method






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > PutAscii Method : PutAscii(Stream,String,Boolean) Method
A local file stream
The remote file name
If true, the local stream will be appended to the remote file
Upload an ASCII Stream
Syntax
'Declaration
 
Public Overloads Sub PutAscii( _
   ByVal stream As System.IO.Stream, _
   ByVal remote As System.String, _
   ByVal append As System.Boolean _
) 
'Usage
 
Dim instance As FTP
Dim stream As System.IO.Stream
Dim remote As System.String
Dim append As System.Boolean
 
instance.PutAscii(stream, remote, append)
public void PutAscii( 
   System.IO.Stream stream,
   System.string remote,
   System.bool append
)
public procedure PutAscii( 
    stream: System.IO.Stream;
    remote: System.String;
    append: System.Boolean
); 
public function PutAscii( 
   stream : System.IO.Stream,
   remote : System.String,
   append : System.boolean
);
public: void PutAscii( 
   System.IO.Stream* stream,
   System.string* remote,
   System.bool append
) 
public:
void PutAscii( 
   System.IO.Stream^ stream,
   System.String^ remote,
   System.bool append
) 

Parameters

stream
A local file stream
remote
The remote file name
append
If true, the local stream will be appended to the remote file
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members
Overload List