Bloom.BloomZipFile.BloomZipFile C# (CSharp) Method

BloomZipFile() public method

public BloomZipFile ( string path ) : System.IO
path string
return System.IO
        public BloomZipFile(string path)
        {
            var fsOut = RobustFile.Create(path);
            _zipStream = new ZipOutputStream(fsOut);
            _zipStream.SetLevel(9); //REVIEW: what does this mean?
        }