Beispiel #1
0
        public FileRecordSequence(string path, FileAccess access, int size)
        {
            if (size < 0)
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("size"));

            this.access = access;
            this.log = new SimpleFileLog(Path.GetFullPath(path), size);
            this.frsHelper = new FileRecordSequenceHelper(this.log);
            this.reservedBytes = 0;
        }
        public FileRecordSequence(string path, FileAccess access, int size)
        {
            if (size < 0)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("size"));
            }

            this.access        = access;
            this.log           = new SimpleFileLog(Path.GetFullPath(path), size);
            this.frsHelper     = new FileRecordSequenceHelper(this.log);
            this.reservedBytes = 0;
        }