Compartilhar via


Método IVsTaskList2.RemoveTasks (UInt32, Int32, IVsTaskItem )

 

Publicado: abril de 2016

Remove tarefas da lista de tarefas.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Sintaxe

int RemoveTasks(
    uint vsProviderCookie,
    int nTasks,
    IVsTaskItem[] prgTasks
)
int RemoveTasks(
    unsigned int vsProviderCookie,
    int nTasks,
    array<IVsTaskItem^>^ prgTasks
)
abstract RemoveTasks : 
        vsProviderCookie:uint32 *
        nTasks:int *
        prgTasks:IVsTaskItem[] -> int
Function RemoveTasks (
    vsProviderCookie As UInteger,
    nTasks As Integer,
    prgTasks As IVsTaskItem()
) As Integer

Parâmetros

  • nTasks
    [in] O número de tarefas para remover
  • prgTasks
    [in] Uma matriz de IVsTaskList itens para remover.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell80.idl:

HRESULT RemoveTasks(
    [in] VSCOOKIE vsProviderCookie,
    [in] int nTasks,
    [in, size_is(nTasks)] IVsTaskItem* prgTasks[]
);

Consulte também

Interface IVsTaskList2
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo