Método IVsEnumDependencies.Next (UInt32, IVsDependency , UInt32)
Recupera um número especificado de dependências na seqüência de enumeração.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int Next(
uint cElements,
IVsDependency[] rgpIVsDependency,
out uint pcElementsFetched
)
int Next(
unsigned int cElements,
array<IVsDependency^>^ rgpIVsDependency,
[OutAttribute] unsigned int% pcElementsFetched
)
abstract Next :
cElements:uint32 *
rgpIVsDependency:IVsDependency[] *
pcElementsFetched:uint32 byref -> int
Function Next (
cElements As UInteger,
rgpIVsDependency As IVsDependency(),
<OutAttribute> ByRef pcElementsFetched As UInteger
) As Integer
Parâmetros
- cElements
[in] Número de elementos que está sendo solicitado.
- rgpIVsDependency
[in, out, size_is(cElements)] Ponteiro para uma matriz de IVsDependency interfaces que pertencem às dependências solicitadas.
- pcElementsFetched
[out, opcional] Ponteiro para o número de elementos fornecidos na rgpIVsDependency.Os chamadores podem passar no null se cElements é um.
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 vsshell.idl:
HRESULT IVsEnumDependencies::Next(
[in] ULONG cElements,
[in, out, size_is(cElements)] IVsDependency *rgpIVsDependency[],
[out] ULONG *pcElementsFetched
);
Consulte também
Interface IVsEnumDependencies
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo