Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Read a block of bytes from stream

Namespace:  SharedCache.WinServiceCommon.SharpZipLib.Zip.Compression.Streams
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public override int Read(
	byte[] buffer,
	int offset,
	int count
)
Visual Basic (Declaration)
Public Overrides Function Read ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
) As Integer
Visual C++
public:
virtual int Read(
	array<unsigned char>^ buffer, 
	int offset, 
	int count
) override

Parameters

buffer
Type: array< System..::.Byte >[]()[]
The buffer to store read data in.
offset
Type: System..::.Int32
The offset to start storing at.
count
Type: System..::.Int32
The maximum number of bytes to read.

Return Value

The actual number of bytes read. Zero if end of stream is detected.

Remarks

[Missing <remarks> documentation for "M:SharedCache.WinServiceCommon.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream.Read(System.Byte[],System.Int32,System.Int32)"]

Exceptions

ExceptionCondition
System..::.NotSupportedExceptionAny access

See Also