public Task <Result> Stop()
        {
            string connectionId = Context.ConnectionId;

            if (Context.Items.TryGetValue(connectionId, out object serverId))
            {
                string name = Context.User.Identity.Name;
                string id   = (string)serverId;
                return(_factorioServerManager.Stop(id, name));
            }

            var error = Result.Failure(Constants.ServerIdErrorKey, $"The server id for the connection is invalid.");

            return(Task.FromResult(error));
        }