Uncompress data using compression algorithm.
Namespace: CryptoSysAPIAssembly: diCrSysAPINet (in diCrSysAPINet.dll) Version: 6.22.2.24248 (6.22.2.0)
Syntaxpublic static byte[] Uncompress(
byte[] data,
ComprAlgorithm comprAlg = ComprAlgorithm.Zlib
)
Public Shared Function Uncompress (
data As Byte(),
Optional comprAlg As ComprAlgorithm = ComprAlgorithm.Zlib
) As Byte()
Parameters
- data Byte
- Compressed data to be uncompressed.
- comprAlg ComprAlgorithm (Optional)
- Compression algorithm.
Return Value
ByteUncompressed data, or an empty array on error.
RemarksAn empty array may also be returned in the trivial case that the original data was the empty array itself.
See Also