Method |
Description |
|
ByteBuffer ( ) : System.Collections |
|
|
ByteBuffer ( Endianness _endianess, System _encoding ) : System.Collections |
|
|
ByteBuffer ( Endianness _endianess, System _encoding, int capacity, int position, MemoryStream _stream ) : System.Collections |
|
|
ByteBuffer ( int capacity ) : System.Collections |
|
|
ByteBuffer ( int capacity, int position, MemoryStream _stream ) : System.Collections |
|
|
allocate ( int capacity ) : ByteBuffer |
|
|
asDoubleBuffer ( ) : DoubleBuffer |
|
|
asFloatBuffer ( ) : FloatBuffer |
|
|
asIntBuffer ( ) : IntBuffer |
|
|
asLongBuffer ( ) : LongBuffer |
|
|
asShortBuffer ( ) : ShortBuffer |
|
|
capacity ( ) : int |
|
|
clear ( ) : ByteBuffer |
|
|
encoding ( ) : System.Text.Encoding |
|
|
get ( byte &bytes ) : ByteBuffer |
|
|
get ( ) : byte |
|
|
getDouble ( ) : double |
|
|
getFloat ( ) : float |
|
|
getInt ( ) : int |
|
|
getLong ( ) : long |
|
|
getShort ( ) : short |
|
|
length ( ) : int |
|
|
order ( ByteOrder _byteorder ) : ByteBuffer |
|
|
order ( ) : ByteOrder |
|
|
position ( ) : long |
|
|
position ( long newposition ) : void |
|
|
put ( byte src ) : ByteBuffer |
|
|
put ( byte src, int offset, int length ) : ByteBuffer |
|
|
putByte ( byte src ) : ByteBuffer |
|
|
putDouble ( double src ) : ByteBuffer |
|
|
putFloat ( float src ) : ByteBuffer |
|
|
putInt ( int src ) : ByteBuffer |
|
|
putLong ( long src ) : ByteBuffer |
|
|
putShort ( short src ) : ByteBuffer |
|
|
putString ( string src ) : ByteBuffer |
|
|
remaining ( ) : long |
|
|
rewind ( ) : ByteBuffer |
|
|
slice ( ) : ByteBuffer |
|
|