Java.Nio.LongBuffer.Put Method
Writes all the remaining longs of the src long buffer to this buffer's current position, and increases both buffers' position by the number of longs copied.

Syntax

[Android.Runtime.Register("put", "(Ljava/nio/LongBuffer;)Ljava/nio/LongBuffer;", "GetPut_Ljava_nio_LongBuffer_Handler")]
public virtual LongBuffer Put (LongBuffer src)

Parameters

src
the source long buffer.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Nio.BufferOverflowExceptionif src.remaining() is greater than this buffer's remaining().
Java.Lang.IllegalArgumentExceptionif src is this buffer.
Java.Nio.ReadOnlyBufferExceptionif no changes may be made to the contents of this buffer.

Remarks

Writes all the remaining longs of the src long buffer to this buffer's current position, and increases both buffers' position by the number of longs copied.

[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