GZip::Decompress Method (array<Byte>^, Int32)

Visual Studio 2015
 

Decompresses a byte array that was compressed using the GZip algorithm. /// </summary> /// <param name="data">.</param> /// <param name="bufferSize"> </param> /// <returns> </returns>

Namespace:   Microsoft.VisualStudio.Utilities
Assembly:  Microsoft.VisualStudio.Utilities (in Microsoft.VisualStudio.Utilities.dll)

public:
static array<unsigned char>^ Decompress(
	array<unsigned char>^ data,
	int bufferSize = 4096
)

Parameters

data
Type: array<System::Byte>^

The array to decompress.

bufferSize
Type: System::Int32

The size of the intermediate buffer used to decompress data.

Return Value

Type: array<System::Byte>^

Decompressed byte array.

Return to top
Show: