Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Sets the input. This should only be called, if needsInput() returns true.

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

Syntax

C#
public void SetInput(
	byte[] buffer,
	int index,
	int count
)
Visual Basic (Declaration)
Public Sub SetInput ( _
	buffer As Byte(), _
	index As Integer, _
	count As Integer _
)
Visual C++
public:
void SetInput(
	array<unsigned char>^ buffer, 
	int index, 
	int count
)

Parameters

buffer
Type: array< System..::.Byte >[]()[]
The source of input data
index
Type: System..::.Int32
The index into buffer where the input starts.
count
Type: System..::.Int32
The number of bytes of input to use.

Remarks

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

Exceptions

ExceptionCondition
System..::.InvalidOperationException No input is needed.
System..::.ArgumentOutOfRangeException The index and/or count are wrong.

See Also