Click or drag to resize

Binary Constructor (Byte, Int32, Int32)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct a Binary on a portion of a byte array.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
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