'Declaration Public Overloads Shared Function Decompress( _ ByVal buffer() As Byte, _ ByVal encryptionPassword As String _ ) As Byte()
'Usage Dim buffer() As Byte Dim encryptionPassword As String Dim value() As Byte value = XceedCompressedStream.Decompress(buffer, encryptionPassword)
public static byte[] Decompress( byte[] buffer, string encryptionPassword )
Parameters
- buffer
- An array of bytes to decompress.
- encryptionPassword
- A string containing the encryption password that was used used to encrypt the files in the stream.