C# Class ICSharpCode.SharpZipLib.Core.ProgressEventArgs

Event arguments during processing of a single file or directory.
Inheritance: System.EventArgs
Show file Open project: icsharpcode/SharpZipLib Class Usage Examples

Public Methods

Method Description
ProgressEventArgs ( string name, long processed, long target ) : System

Initialise a new instance of ScanEventArgs

Method Details

ProgressEventArgs() public method

Initialise a new instance of ScanEventArgs
public ProgressEventArgs ( string name, long processed, long target ) : System
name string The file or directory name if known.
processed long The number of bytes processed so far
target long The total number of bytes to process, 0 if not known
return System