Exemple #1
0
 /// <summary>
 /// Encodes a uuid and appends the bytes to the buffer.
 /// </summary>
 /// <param name="data">The uuid.</param>
 /// <param name="buffer">The destination buffer.</param>
 public static void EncodeUuid(Guid?data, ByteBuffer buffer)
 {
     UuidEncoding.Encode(data, buffer);
 }
Exemple #2
0
 public void Encode(ByteBuffer buffer)
 {
     UuidEncoding.Encode(this.uuid, buffer);
 }