'Declaration Public Event ByteProgression As EventHandler(Of ZipWriterByteProgressionEventArgs)
'Usage Dim instance As ZipWriter Dim handler As EventHandler(Of ZipWriterByteProgressionEventArgs) AddHandler instance.ByteProgression, handler
public event EventHandler<ZipWriterByteProgressionEventArgs> ByteProgression
Event Data
The event handler receives an argument of type ZipWriterByteProgressionEventArgs containing data related to this event. The following ZipWriterByteProgressionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
BytesProcessed | Gets the number of bytes processed of the current file. |
ZipItemLocalHeader | Gets the local header of the item currently being processed. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also