BTDB.KVDBLayer.OnDiskFileCollection.File.Reader.FillBuffer C# (CSharp) Method

FillBuffer() protected method

protected FillBuffer ( ) : void
return void
                protected override void FillBuffer()
                {
                    if (_ofs == _valueSize)
                    {
                        Pos = -1;
                        End = -1;
                        return;
                    }
                    _owner._stream.Position = (long)_ofs;
                    End = _owner._stream.Read(Buf, 0, Buf.Length);
                    _ofs += (ulong)End;
                    Pos = 0;
                }