SevenZipSharp
SevenZipSharp copied to clipboard
Archive extraction should be cancelable
I have the problem that I would like to cancel the extraction process of the SevenZipExtractor.
Either via the extractor itself:
Something like SevenZipExtractor.CancelExtraction();
Or via the ProgressEventArgs in the SevenZipExtractor.Extracting event:
private void ExtractionProgress(object sender, ProgressEventArgs e)
{
if (e.PercentDone > 50)
{
e.Cancel = true;
}
}
Is there possibly already a workaround?