Java.Nio.ByteBuffer.Get Method
Reads bytes from the current position into the specified byte array and increases the position by the number of bytes read.

Syntax

[Android.Runtime.Register("get", "([B)Ljava/nio/ByteBuffer;", "GetGet_arrayBHandler")]
public virtual ByteBuffer Get (byte[] dest)

Parameters

dst
the destination byte array.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Nio.BufferUnderflowExceptionif dst.length is greater than remaining().

Remarks

Reads bytes from the current position into the specified byte array and increases the position by the number of bytes read.

Calling this method has the same effect as get(dst, 0, dst.length).

[Android Documentation]

Requirements

Namespace: Java.Nio
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1