BplusDotNet.BufferFile.sanityCheck C# (CSharp) Méthode

sanityCheck() public méthode

public sanityCheck ( ) : void
Résultat void
        void sanityCheck()
        {
            if (this.buffersize<MINBUFFERSIZE)
            {
                throw new BufferFileException("buffer size too small "+this.buffersize);
            }
            if (this.seekStart<0)
            {
                throw new BufferFileException("can't start at negative position "+this.seekStart);
            }
        }