Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip Namespace / QuickZip.ByteProgressionCallback Delegate


In This Topic
    QuickZip.ByteProgressionCallback Delegate
    In This Topic
    Delegate for ByteProgression notification.
    Syntax
    'Declaration
     
    Public Delegate Sub QuickZip.ByteProgressionCallback( _
       ByVal currentItemName As String, _
       ByVal currentItemBytesProcessed As Long, _
       ByVal currentItemTotalBytes As Long, _
       ByVal currentItemPercent As Byte, _
       ByVal allFilesBytesProcessed As Long, _
       ByVal allFilesTotalBytes As Long, _
       ByVal allFilesPercent As Byte, _
       ByVal userParams As Object _
    ) 
    'Usage
     
    Dim instance As New QuickZip.ByteProgressionCallback(AddressOf HandlerMethod)
    public delegate void QuickZip.ByteProgressionCallback( 
       string currentItemName,
       long currentItemBytesProcessed,
       long currentItemTotalBytes,
       byte currentItemPercent,
       long allFilesBytesProcessed,
       long allFilesTotalBytes,
       byte allFilesPercent,
       object userParams
    )

    Parameters

    currentItemName
    currentItemBytesProcessed
    currentItemTotalBytes
    currentItemPercent
    allFilesBytesProcessed
    allFilesTotalBytes
    allFilesPercent
    userParams
    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