Clear Error List window Pragmatically for Visual Studio

730 Views Asked by At

I am writing my custom parser and after validation i am adding information to Error list of Visual studio using "error task" and "error service Provider". It's adding my custom error to error list window. but when i recompile again it adds up the error to the window. if it was 2 before and now is 3 the it shows ac-cumulatively. Is there any way that i can clear those error items from error list window before i add another.

 _errorListProvider.Tasks.Add(new ErrorTask
            {
                Category = TaskCategory.User,
                ErrorCategory = category,
                HelpKeyword = "Automation Id Help text",
                Line = 12,
                Column = 12,
                Text = message
            });

i would appreciate any help on this.

2

There are 2 best solutions below

1
On BEST ANSWER
_errorListProvider.Tasks.Clear()

But it won't work if you are crating provider every time you want to add error. So, you need to have it somewhere as variable you can access when you need.

1
On

If you also want to remove the errors automatically when the project from where the errors occurred is closed or when the solution is closed, you can do something like this:

public void RemoveErrors(IVsHierarchy aHierarchy)
{
  SuspendRefresh();

  for (int i = errorListProvider.Tasks.Count - 1; i >= 0; --i)
  {
    var errorTask = errorListProvider.Tasks[i] as ErrorTask;
    aHierarchy.GetCanonicalName(Microsoft.VisualStudio.VSConstants.VSITEMID_ROOT, out string nameInHierarchy);
    errorTask.HierarchyItem.GetCanonicalName(Microsoft.VisualStudio.VSConstants.VSITEMID_ROOT, out string nameErrorTaskHierarchy);
    if (nameInHierarchy == nameErrorTaskHierarchy)
    {
      errorTask.Navigate -= ErrorTaskNavigate;
      errorListProvider.Tasks.Remove(errorTask);
    }
  }

  ResumeRefresh();
}

If you will remove more errors from the error list or you will add more errors in the error list you can use SuspendRefresh() and ResumeRefresh() methods to speed up the process. Your operations will be faster then before because usually the error list is refreshed after every remove or add operation.