Xceed Real-Time Zip for .NET Documentation
Xceed.Compression Assembly / Xceed.Compression Namespace / UncompressedDecompressor Class / Decompress Method


In This Topic
    Decompress Method (UncompressedDecompressor)
    In This Topic
    Syntax
    'Declaration
     
    Public Overrides Function Decompress( _
       ByVal buffer() As Byte, _
       ByVal offset As Integer, _
       ByVal count As Integer, _
       ByRef endOfData As Boolean, _
       ByRef decompressed() As Byte, _
       ByRef remaining As Integer _
    ) As Integer
    'Usage
     
    Dim instance As UncompressedDecompressor
    Dim buffer() As Byte
    Dim offset As Integer
    Dim count As Integer
    Dim endOfData As Boolean
    Dim decompressed() As Byte
    Dim remaining As Integer
    Dim value As Integer
     
    value = instance.Decompress(buffer, offset, count, endOfData, decompressed, remaining)
    public override int Decompress( 
       byte[] buffer,
       int offset,
       int count,
       ref bool endOfData,
       out byte[] decompressed,
       out int remaining
    )

    Parameters

    buffer
    offset
    count
    endOfData
    decompressed
    remaining
    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