TransformationHeader
Class
Holds leading transformation metadata written before transformed data (e.g. IVs, salt, or algorithm identifiers) for compression or encryption stages.
Definition
Namespace:Telerik.Windows.Zip
Assembly:Telerik.Windows.Zip.dll
Syntax:
C#
public class TransformationHeader
Inheritance: objectTransformationHeader
Properties
Buffer that stores header bytes read from or to be written to the stream.
C#
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public byte[] Buffer { get; set; }
Number of header bytes remaining to read from the underlying stream.
C#
public int BytesToRead { get; set; }
Flag indicating whether the header length should be included in the stored compressed size for the entry.
C#
public bool CountHeaderInCompressedSize { get; set; }
Initialization data extracted from or required to construct the transformation header (e.g. salt, nonce, flags).
C#
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public byte[] InitData { get; set; }