/// <summary>
 /// Decompress the entry to a stream.
 /// </summary>
 /// <param name="entry">The entry which will be decompressed</param>
 /// <param name="outStream">The output stream</param>
 public void ExtractEntry(CMFEntry entry, System.IO.Stream outStream)
 {
     this.archive.ExtractEntry(entry, outStream);
 }
 /// <summary>
 /// Decompress the entry to a destination path.
 /// </summary>
 /// <param name="entry">The entry which will be decompressed</param>
 /// <param name="filepath">Destination of the file</param>
 public void ExtractEntry(CMFEntry entry, string filepath)
 {
     this.archive.ExtractEntry(entry, filepath);
 }