ReadMap() public static method

Reads a map value from a buffer.
public static ReadMap ( System.ByteBuffer buffer, byte formatCode ) : Amqp.Types.Map
buffer System.ByteBuffer The buffer to read.
formatCode byte The format code of the value.
return Amqp.Types.Map
Example #1
0
 internal override void DecodeValue(ByteBuffer buffer)
 {
     this.map = Encoder.ReadMap(buffer, Encoder.ReadFormatCode(buffer));
 }