Exemplo n.º 1
0
 /// <summary>
 /// Replaces the items for the specified entry.
 /// </summary>
 public void ReplaceItems(string filePath, string moniker, List <TaskProviderItem> items)
 {
     SendMessage(WorkerMessage.Replace(filePath, moniker, items));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Removes all items from all entries.
 /// </summary>
 public void ClearAll()
 {
     SendMessage(WorkerMessage.Clear());
 }
Exemplo n.º 3
0
 /// <summary>
 /// Removes all items for the specified entry.
 /// </summary>
 public void Clear(AnalysisEntry entry, string moniker)
 {
     SendMessage(WorkerMessage.Clear(entry, moniker));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Adds items to the specified entry's existing items.
 /// </summary>
 public void AddItems(AnalysisEntry entry, string moniker, List <TaskProviderItem> items)
 {
     SendMessage(WorkerMessage.Append(entry, moniker, items));
 }
Exemplo n.º 5
0
 /// <summary>
 /// Replaces the items for the specified entry.
 /// </summary>
 public void ReplaceItems(AnalysisEntry entry, string moniker, List <TaskProviderItem> items)
 {
     SendMessage(WorkerMessage.Replace(entry, moniker, items));
 }
Exemplo n.º 6
0
 /// <summary>
 /// Removes all items for the specified entry.
 /// </summary>
 public void Clear(IProjectEntry entry, string moniker)
 {
     SendMessage(WorkerMessage.Clear(entry, moniker));
 }
Exemplo n.º 7
0
 /// <summary>
 /// Removes all items for the specified entry.
 /// </summary>
 public void Clear(string filePath, string moniker)
 {
     SendMessage(WorkerMessage.Clear(filePath, moniker));
 }
Exemplo n.º 8
0
 /// <summary>
 /// Adds items to the specified entry's existing items.
 /// </summary>
 public void AddItems(string filePath, string moniker, List <TaskProviderItem> items)
 {
     SendMessage(WorkerMessage.Append(filePath, moniker, items));
 }