Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Construct a Binary on a portion of a byte array.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public Binary(
	byte[] ab,
	int of,
	int cb
)

Parameters

ab
Type: array< System..::.Byte >[]()[]
A byte array.
of
Type: System..::.Int32
An offset into the byte array.
cb
Type: System..::.Int32
The number of bytes to utilize.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException If of or cb is negative, or
CopyC#
of + cb
is larger than
CopyC#
ab.Length
.
System..::.ArgumentNullException If byte array is null.

See Also