WriteMap() public static method

Writes a map value to a buffer.
public static WriteMap ( System.ByteBuffer buffer, Amqp.Types.Map value, bool smallEncoding ) : void
buffer System.ByteBuffer The buffer to write.
value Amqp.Types.Map The map value.
smallEncoding bool if true, try using small encoding if possible.
return void
Beispiel #1
0
 internal override void EncodeValue(ByteBuffer buffer)
 {
     Encoder.WriteMap(buffer, this.map, true);
 }