IVsEnumTaskItems Interface
Enumerates the task items associated with task providers.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<GuidAttribute("66638598-522B-4058-9E65-FAF237700E81")> _
<InterfaceTypeAttribute()> _
Public Interface IVsEnumTaskItems
[GuidAttribute("66638598-522B-4058-9E65-FAF237700E81")]
[InterfaceTypeAttribute()]
public interface IVsEnumTaskItems
[GuidAttribute(L"66638598-522B-4058-9E65-FAF237700E81")]
[InterfaceTypeAttribute()]
public interface class IVsEnumTaskItems
[<GuidAttribute("66638598-522B-4058-9E65-FAF237700E81")>]
[<InterfaceTypeAttribute()>]
type IVsEnumTaskItems = interface end
public interface IVsEnumTaskItems
The IVsEnumTaskItems type exposes the following members.
Methods
Name | Description | |
---|---|---|
Clone | Creates an enumerator that contains the same state as the current enumerator. | |
Next | Retrieves a specified number of task items in the enumeration sequence. | |
Reset | Sets the enumeration sequence to the beginning. | |
Skip | Skips a specified number of task items in the enumeration sequence. |
Top
Remarks
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 Figures Language Service.
Notes to Implementers
Task providers implement this interface to allow the task list to access their tasks through the EnumTaskItems method.