public AlfredInput GetInputForAlfredWindowSearchBar(string i_SearchKey)
        {
            ThreadHelper.ThrowIfNotOnUIThread();
            string searchKey  = i_SearchKey;
            string projetType = VisualStudioHandler.GetProjectTypeAsString();

            return(new AlfredInput(searchKey, null, projetType));
        }
        public AlfredInput GetInputFromSelectedError()
        {
            ThreadHelper.ThrowIfNotOnUIThread();

            string errorDescription = null;
            string errorCode        = null;
            string projetType       = VisualStudioHandler.GetProjectTypeAsString();

            if (VisualStudioHandler.HasSelectedError())
            {
                errorDescription = VisualStudioHandler.GetValueFromSelectedError("text");
                errorCode        = VisualStudioHandler.GetValueFromSelectedError("errorcode");
            }

            return(new AlfredInput(errorDescription, errorCode, projetType));
        }