internal CommunityGoalJoinEvent InvokeEvent(CommunityGoalJoinEvent arg) { if (_api.ValidateEvent(arg)) { CommunityGoalJoin?.Invoke(_api, arg); } return(arg); }
private static void AssertEvent(CommunityGoalJoinEvent @event) { Assert.NotNull(@event); Assert.Equal(DateTime.Parse("2017-08-14T13:20:28Z"), @event.Timestamp); Assert.Equal(EventName, @event.Event); Assert.Equal(726, @event.GoalId); Assert.Equal("Alliance Research Initiative – Trade", @event.Name); Assert.Equal("Kaushpoos", @event.System); }
internal void InvokeCommunityGoalJoinEvent(CommunityGoalJoinEvent arg) { CommunityGoalJoinEvent?.Invoke(this, arg); }
internal void InvokeCommunityGoalJoinEvent(CommunityGoalJoinEvent arg) => CommunityGoalJoinEvent?.Invoke(null, arg);