Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Entry point to begin an asynchronous write. Always throws a NotSupportedException.

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 data from
offset
Type: System..::.Int32
Offset of first byte to write
count
Type: System..::.Int32
The maximum number of bytes to write
callback
Type: System..::.AsyncCallback
The method to be called when the asynchronous write operation is completed
state
Type: System..::.Object
A user-provided object that distinguishes this particular asynchronous write request from other requests

Return Value

An IAsyncResult that references the asynchronous write

Remarks

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

Exceptions

ExceptionCondition
System..::.NotSupportedExceptionAny access

See Also