Renci.SshNet.Common.DerData.ReadByte C# (CSharp) Méthode

ReadByte() private méthode

private ReadByte ( ) : byte
Résultat byte
        private byte ReadByte()
        {
            if (_readerIndex > _data.Count)
                throw new InvalidOperationException("Read out of boundaries.");

            return _data[_readerIndex++];
        }