ACAT.Lib.Extension.DialogUtils.ShowAppLauncher C# (CSharp) 메소드

ShowAppLauncher() 공개 정적인 메소드

Activates the functional agent responsible for launching applications
public static ShowAppLauncher ( ) : void
리턴 void
        public static async void ShowAppLauncher()
        {
            try
            {
                Context.AppTalkWindowManager.CloseTalkWindow();
                IApplicationAgent launchAppAgent = Context.AppAgentMgr.GetAgentByName("Launch App Agent");
                if (launchAppAgent == null)
                {
                    return;
                }

                await Context.AppAgentMgr.ActivateAgent(launchAppAgent as IFunctionalAgent);
            }
            catch (Exception ex)
            {
                Log.Debug(ex.ToString());
            }
        }