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

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

Read the lines of a file that has a specified encoding.
is null. Client is not connected. The method was called after the client was disposed.
public ReadLines ( string path, Encoding encoding ) : IEnumerable
path string The file to read.
encoding Encoding The encoding that is applied to the contents of the file.
Результат IEnumerable
        public IEnumerable<string> ReadLines(string path, Encoding encoding)
        {
            return ReadAllLines(path, encoding);
        }

Same methods

SftpClient::ReadLines ( string path ) : IEnumerable