Renci.SshNet.Common.PipeStream.ReadAvailable C# (CSharp) Method

ReadAvailable() private method

Returns true if there are
private ReadAvailable ( int count ) : bool
count int The count.
return bool
        private bool ReadAvailable(int count)
        {
            var length = Length;
            return (_isFlushed || length >= count) && (length >= (count + 1) || !BlockLastReadBuffer);
        }