Share via


Utility.DecompressCoverageBuffer Method (Byte[], UInt32)

 

Decompresses the provided buffer. This class and its members are reserved for internal use and are not intended to be used in your code.

Namespace:   Microsoft.VisualStudio.Coverage.Analysis
Assembly:  Microsoft.VisualStudio.Coverage.Analysis (in Microsoft.VisualStudio.Coverage.Analysis.dll)

Syntax

public static byte[] DecompressCoverageBuffer(
    byte[] buffer,
    uint blockCount
)
public:
static array<unsigned char>^ DecompressCoverageBuffer(
    array<unsigned char>^ buffer,
    unsigned int blockCount
)
static member DecompressCoverageBuffer : 
        buffer:byte[] *
        blockCount:uint32 -> byte[]
Public Shared Function DecompressCoverageBuffer (
    buffer As Byte(),
    blockCount As UInteger
) As Byte()

Parameters

  • buffer
    Type: System.Byte[]

    A byte array that is the coverage buffer to decompress.

  • blockCount
    Type: System.UInt32

    The original block count of the buffer.

Return Value

Type: System.Byte[]

The decompressed byte array.

See Also

CompressCoverageBuffer
Utility Class
Microsoft.VisualStudio.Coverage.Analysis Namespace

Return to top