ICancellable.cs 483 B

123456789101112131415161718
  1. namespace SevenZip
  2. {
  3. /// <summary>
  4. /// The definition of the interface which supports the cancellation of a process.
  5. /// </summary>
  6. public interface ICancellable
  7. {
  8. /// <summary>
  9. /// Gets or sets whether to stop the current archive operation.
  10. /// </summary>
  11. bool Cancel { get; set; }
  12. /// <summary>
  13. /// Gets or sets whether to skip the current file.
  14. /// </summary>
  15. bool Skip { get; set; }
  16. }
  17. }