Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Asynchronous reads are not supported a NotSupportedException is always thrown

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 IAsyncResult BeginRead(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback callback,
	Object state
)
Visual Basic (Declaration)
Public Overrides Function BeginRead ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer, _
	callback As AsyncCallback, _
	state As Object _
) As IAsyncResult
Visual C++
public:
virtual IAsyncResult^ BeginRead(
	array<unsigned char>^ buffer, 
	int offset, 
	int count, 
	AsyncCallback^ callback, 
	Object^ state
) override

Parameters

buffer
Type: array< System..::.Byte >[]()[]
The buffer to read into.
offset
Type: System..::.Int32
The offset to start storing data at.
count
Type: System..::.Int32
The number of bytes to read
callback
Type: System..::.AsyncCallback
The async callback to use.
state
Type: System..::.Object
The state to use.

Return Value

Returns an IAsyncResult

Remarks

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

Exceptions

ExceptionCondition
System..::.NotSupportedExceptionAny access

See Also