IVsTaskProvider.EnumTaskItems Method
Standard enumerator over tasks supplied by this provider.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Déclaration
Function EnumTaskItems ( _
<OutAttribute> ByRef ppenum As IVsEnumTaskItems _
) As Integer
'Utilisation
Dim instance As IVsTaskProvider
Dim ppenum As IVsEnumTaskItems
Dim returnValue As Integer
returnValue = instance.EnumTaskItems(ppenum)
int EnumTaskItems(
out IVsEnumTaskItems ppenum
)
int EnumTaskItems(
[OutAttribute] IVsEnumTaskItems^% ppenum
)
function EnumTaskItems(
ppenum : IVsEnumTaskItems
) : int
Parameters
ppenum
Type: Microsoft.VisualStudio.Shell.Interop.IVsEnumTaskItems%[out] Pointer to the IVsEnumTaskItems interface.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsTaskProvider::EnumTaskItems(
[out] IVsEnumTaskItems **ppEnum
);
The task list uses this method to scan through all of the tasks of this task provider, via the IVsEnumTaskItems interface that is returned.
This method enumerates only the tasks provided by this task provider. All of the tasks in the task list are enumerated through the EnumTaskItems.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.