Renci.SshNet.Shell.Shell C# (CSharp) Method

Shell() private method

Initializes a new instance of the Shell class.
private Shell ( ISession session, Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, uint>.IDictionary terminalModes, int bufferSize ) : System
session ISession The session.
input Stream The input.
output Stream The output.
extendedOutput Stream The extended output.
terminalName string Name of the terminal.
columns uint The columns.
rows uint The rows.
width uint The width.
height uint The height.
terminalModes uint>.IDictionary The terminal modes.
bufferSize int Size of the buffer for output stream.
return System
        internal Shell(ISession session, Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes, int bufferSize)
        {
            _session = session;
            _input = input;
            _outputStream = output;
            _extendedOutputStream = extendedOutput;
            _terminalName = terminalName;
            _columns = columns;
            _rows = rows;
            _width = width;
            _height = height;
            _terminalModes = terminalModes;
            _bufferSize = bufferSize;
        }