ctac.ComponentLoggedInCommand.Execute C# (CSharp) Method

Execute() public method

public Execute ( ) : void
return void
        public override void Execute()
        {
            switch (loggedInKey.componentName) {
                case "auth":
                    authLoggedIn.Dispatch(status, loggedInKey);
                    break;
                case "gamelist":
                    gamelistLoggedIn.Dispatch(status, loggedInKey);
                    break;
                case "game":
                    gameLoggedIn.Dispatch(status, loggedInKey);
                    break;
                case "matchmaker":
                    matchmakerLoggedIn.Dispatch(status, loggedInKey);
                    break;
            }
        }
ComponentLoggedInCommand