'Declaration Public Overloads Shared Function Compress( _ 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.Compress(buffer, encryptionPassword)
public static byte[] Compress( byte[] buffer, string encryptionPassword )
Parameters
- buffer
- The array of bytes to compress.
- encryptionPassword
- A string containing the encryption password that will be used to encrypt the files in the stream.