Class ZipProgressEventArgs
Provides information about the progress of a save, read, or extract operation. This is a base class; you will probably use one of the classes derived from this one.
public class ZipProgressEventArgs : EventArgs
- Inheritance
-
ZipProgressEventArgs
- Derived
- Inherited Members
- Extension Methods
Properties
ArchiveName
Returns the archive name associated to this event.
public string ArchiveName { get; set; }
Property Value
BytesTransferred
The number of bytes read or written so far for this entry.
public long BytesTransferred { get; set; }
Property Value
Cancel
In an event handler, set this to cancel the save or extract operation that is in progress.
public bool Cancel { get; set; }
Property Value
CurrentEntry
The name of the last entry saved or extracted.
public ZipEntry CurrentEntry { get; set; }
Property Value
EntriesTotal
The total number of entries to be saved or extracted.
public int EntriesTotal { get; set; }
Property Value
EventType
The type of event being reported.
public ZipProgressEventType EventType { get; set; }
Property Value
TotalBytesToTransfer
Total number of bytes that will be read or written for this entry. This number will be -1 if the value cannot be determined.
public long TotalBytesToTransfer { get; set; }