IVsEnumTaskItems Interface
Enumerates the task items associated with task providers.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
| Name | Description | |
|---|---|---|
![]() | Clone(IVsEnumTaskItems) | Creates an enumerator that contains the same state as the current enumerator. |
![]() | Next(UInt32, IVsTaskItem[], UInt32[]) | Retrieves a specified number of task items in the enumeration sequence. |
![]() | Reset() | Sets the enumeration sequence to the beginning. |
![]() | Skip(UInt32) | Skips a specified number of task items in the enumeration sequence. |
When RefreshTasks is called, the task list queries the specified task provider for its task items by using EnumTaskItems. The task list finds any new or updated tasks and adds them to its own enumeration of task items. Task providers are responsible for adding, updating, and deleting their tasks from the enumeration of task items that they provide, and for implementing the methods of this interface so that the task list may use them.
See illustrations of the implementation of this interface in the sample .d166df06-9a77-491d-aa81-6834a4ad7e50
Notes to Implementers:
Task providers implement this interface to allow the task list to access their tasks through the EnumTaskItems method.
