protected virtual void OnProgressedUnzip(ProgressUnzipEventArgs e)
 {
     if (ProgressedUnzip != null)
     {
         ProgressedUnzip(this, e);
     }
 }
 private void Patcher_ProgressedUnzip(object sender, ProgressUnzipEventArgs e)
 {
     // this is worthless, the current unzip code unzips the whole thing then gets to here
     // leaving the event handler in case we need it in the future
     // TxtLogAppendText(String.Format("Extracted File: {0}\r\n", e.ExtractedFilename));
 }