Example #1
0
 public virtual void ReadFrom(PooledSocket socket)
 {
     socket.FlushSendBuffer();
     this.Value = RedisValue.Read(socket);
     if (Value.Type == RedisValueType.Error)
     {
         throw new RedisException(Value.ErrorText);
     }
 }