Writes a sequence of bytes into the current stream. The sequence will be decompressed and the result written into the underlying stream.

Namespace:  Rebex.IO.Compression.Streams
Assembly:  Rebex.Zip (in Rebex.Zip.dll)

Syntax

Visual Basic
Public Overrides Sub Write ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
)
C#
public override void Write(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer
Type: array<System..::..Byte>[]()[][]
An array of bytes to be decompressed.
offset
Type: System..::..Int32
The zero-based byte offset in the buffer at which to begin writing bytes to the current stream.
count
Type: System..::..Int32
The number of bytes to be decompressed from the buffer.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also