protected virtual void OnSessionCreated(LeagueSessionCreatedArgs e)
        {
            LeagueSessionCreatedHandler handler = SessionCreated;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 internal void HandleLeagueSessionCreated(LeagueSessionService service, LeagueSessionCreatedArgs e)
 {
     var session = e.Session;
      session.PhaseChanged += HandleSessionPhaseChanged;
      session.ProcessLaunched += HandleSessionProcessLaunched;
 }