Renci.SshNet.ScpClient.ReadByte C# (CSharp) Method

ReadByte() private static method

private static ReadByte ( Stream stream ) : int
stream Stream
return int
        private static int ReadByte(Stream stream)
        {
            var b = stream.ReadByte();
            if (b == -1)
                throw new SshException("Stream has been closed.");
            return b;
        }