Xceed .NET Libraries Documentation
Xceed.GZip Assembly / Xceed.GZip Namespace / QuickGZip.ByteProgressionCallback Delegate


In This Topic
    QuickGZip.ByteProgressionCallback Delegate
    In This Topic
    Delegate for ByteProgression notification.
    Syntax
    'Declaration
     
    Public Delegate Sub QuickGZip.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 QuickGZip.ByteProgressionCallback(AddressOf HandlerMethod)
    public delegate void QuickGZip.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