Click or drag to resize

Binary Constructor (Byte, Int32, Int32)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Construct a Binary on a portion of a byte array.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public Binary(
	byte[] ab,
	int of,
	int cb
)

Parameters

ab
Type: SystemByte
A byte array.
of
Type: SystemInt32
An offset into the byte array.
cb
Type: SystemInt32
The number of bytes to utilize.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException If of or cb is negative, or
of + cb
is larger than
ab.Length
.
ArgumentNullException If byte array is null.
See Also