Renci.SshNet.Common.PipeStream.ReadAvailable C# (CSharp) Méthode

ReadAvailable() private méthode

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