Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Asynchronous writes arent 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 BeginWrite(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback callback,
	Object state
)
Visual Basic (Declaration)
Public Overrides Function BeginWrite ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer, _
	callback As AsyncCallback, _
	state As Object _
) As IAsyncResult
Visual C++
public:
virtual IAsyncResult^ BeginWrite(
	array<unsigned char>^ buffer, 
	int offset, 
	int count, 
	AsyncCallback^ callback, 
	Object^ state
) override

Parameters

buffer
Type: array< System..::.Byte >[]()[]
The buffer to write.
offset
Type: System..::.Int32
The offset to begin writing at.
count
Type: System..::.Int32
The number of bytes to write.
callback
Type: System..::.AsyncCallback
The AsyncCallback to use.
state
Type: System..::.Object
The state object.

Return Value

Returns an IAsyncResult.

Remarks

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

Exceptions

ExceptionCondition
System..::.NotSupportedExceptionAny access

See Also