Home

The nZip type exposes the following events.

Events

 Public

 Protected
 Instance

 Static
 Declared

 Inherited
 XNA Framework Only

 .NET Compact Framework Only

 MemberDescription
zipping

subscribe your function to this event if you wish to know when a file is finished zipping, extracting, or adding to a zipFile:

.

//where funcName is declared funcName(string currFile, int currCount, int maxCount)

zipping += new zipHandler(funcName);
zipStart
subscribe to this event if you wish to know when a zip,extract or addition starts:

.

//where funcName accepts one int parameter(maxCount)

zipStart += new zipStartHandler(funcName);

See Also