public void ReceiveKeys(ServerMessage msg, GameSaveKeyType kind) { int count = msg.ReadWord(); while (count>0) { string key = msg.ReadString(); string value = msg.ReadString(); //Value := DecompressBinaryData(Value); this.UpdateKey(key, value, kind); count--; } }