Method PutInt64
PutInt64(Int64)
Writes the given
The
NOTE: This was putLong() in the JDK
Declaration
public abstract ByteBuffer PutInt64(long value)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | value | the |
Returns
Type | Description |
---|---|
ByteBuffer | this buffer. |
Exceptions
Type | Condition |
---|---|
BufferOverflowException | if position is greater than |
ReadOnlyBufferException | if no changes may be made to the contents of this buffer. |
PutInt64(Int32, Int64)
Writes the given
The
NOTE: This was putLong() in the JDK
Declaration
public abstract ByteBuffer PutInt64(int index, long value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | the index, must not be negative and equal or less than |
System.Int64 | value | the |
Returns
Type | Description |
---|---|
ByteBuffer | this buffer. |
Exceptions
Type | Condition |
---|---|
ReadOnlyBufferException | if no changes may be made to the contents of this buffer. |