Renci.SshNet.SftpClient.AppendText C# (CSharp) Метод

AppendText() публичный Метод

Creates a StreamWriter that appends UTF-8 encoded text to an existing file.
is null. Client is not connected. was not found on the remote host. The method was called after the client was disposed.
public AppendText ( string path ) : StreamWriter
path string The path to the file to append to.
Результат System.IO.StreamWriter
        public StreamWriter AppendText(string path)
        {
            return AppendText(path, Encoding.UTF8);
        }

Same methods

SftpClient::AppendText ( string path, Encoding encoding ) : StreamWriter