Click or drag to resize

BinaryToByteArray Method (Int32, Int32)

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

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

Parameters

of
Type: SystemInt32
The beginning index, inclusive.
cb
Type: SystemInt32
The number of bytes to include in the resulting byte array.

Return Value

Type: Byte
A byte array containing the specified portion of this Binary.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException If of or cb is negative, or
of + cb
is larger than the length of this Binary.
See Also