Table of Contents

Class ZipProgressEventArgs

Namespace
Ionic.Zip
Assembly
SunamoDotNetZip.dll

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

string

BytesTransferred

The number of bytes read or written so far for this entry.

public long BytesTransferred { get; set; }

Property Value

long

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

bool

CurrentEntry

The name of the last entry saved or extracted.

public ZipEntry CurrentEntry { get; set; }

Property Value

ZipEntry

EntriesTotal

The total number of entries to be saved or extracted.

public int EntriesTotal { get; set; }

Property Value

int

EventType

The type of event being reported.

public ZipProgressEventType EventType { get; set; }

Property Value

ZipProgressEventType

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; }

Property Value

long