Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Enumerates all of the tasks on the task list.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function EnumTaskItems ( _
<OutAttribute> ByRef ppenum As IVsEnumTaskItems _
) As Integer
int EnumTaskItems(
out IVsEnumTaskItems ppenum
)
int EnumTaskItems(
[OutAttribute] IVsEnumTaskItems^% ppenum
)
abstract EnumTaskItems :
ppenum:IVsEnumTaskItems byref -> int
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 IVsTaskList::EnumTaskItems(
[out] IVsEnumTaskItems **ppEnum
);
You can use this method to scan through all of the tasks on the task list, via the IVsEnumTaskItems interface that is returned.
For a detailed list of the tasks associated with a specific task provider, see EnumTaskItems.
.NET Framework Security
- 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.