DecompressedData Event

This event fires with decompressed data.

Syntax

public event OnDecompressedDataHandler OnDecompressedData;

public delegate void OnDecompressedDataHandler(object sender, ZipstreamDecompressedDataEventArgs e);

public class ZipstreamDecompressedDataEventArgs : EventArgs {
  public string Data { get; }
public byte[] DataB { get; } }
Public Event OnDecompressedData As OnDecompressedDataHandler

Public Delegate Sub OnDecompressedDataHandler(sender As Object, e As ZipstreamDecompressedDataEventArgs)

Public Class ZipstreamDecompressedDataEventArgs Inherits EventArgs
  Public ReadOnly Property Data As String
Public ReadOnly Property DataB As Byte() End Class

Remarks

The DecompressedData event fires as compressed data is available when DecompressData or DecompressBlock is called. This may fire one or more times as data is decompressed.

Data holds the current block of decompressed data.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks ZIP 2020 .NET Edition - Version 20.0 [Build 8300]