Xceed .NET Libraries Documentation
ByteProgression Event (ZipReader)


Xceed.Zip Assembly > Xceed.Zip.ReaderWriter Namespace > ZipReader Class : ByteProgression Event
Raised when ReadItemData has been called.
Syntax
'Declaration
 
Public Event ByteProgression As EventHandler(Of ZipReaderByteProgressionEventArgs)
'Usage
 
Dim instance As ZipReader
Dim handler As EventHandler(Of ZipReaderByteProgressionEventArgs)
 
AddHandler instance.ByteProgression, handler
Event Data

The event handler receives an argument of type ZipReaderByteProgressionEventArgs containing data related to this event. The following ZipReaderByteProgressionEventArgs properties provide information specific to this event.

PropertyDescription
Gets the number of bytes processed of the current file.  
Gets the percentage of the current file that has been processed.  
Gets the uncompressed size of the current file.  
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