WriteList() public static method

Writes a list value to a buffer.
public static WriteList ( System.ByteBuffer buffer, IList value, bool smallEncoding ) : void
buffer System.ByteBuffer The buffer to write.
value IList The list value.
smallEncoding bool if true, try using small encoding if possible.
return void
 internal override void EncodeValue(ByteBuffer buffer)
 {
     Encoder.WriteList(buffer, this.fields, true);
 }