Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

Archive extraction should be cancelableΒ #198

@Yelo420

Description

@Yelo420

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions