Método IVsEnumNavInfoNodes.Next (UInt32, IVsNavInfoNode , UInt32)
Recupera um número especificado de itens de nó na seqüência de enumeração.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int Next(
uint celt,
IVsNavInfoNode[] rgelt,
out uint pceltFetched
)
int Next(
unsigned int celt,
array<IVsNavInfoNode^>^ rgelt,
[OutAttribute] unsigned int% pceltFetched
)
abstract Next :
celt:uint32 *
rgelt:IVsNavInfoNode[] *
pceltFetched:uint32 byref -> int
Function Next (
celt As UInteger,
rgelt As IVsNavInfoNode(),
<OutAttribute> ByRef pceltFetched As UInteger
) As Integer
Parâmetros
- celt
[in] O número de elementos que está sendo solicitado.
- rgelt
[out] Uma matriz do tipo IVsNavInfoNode que contém os itens de nó solicitado.
- pceltFetched
[out, opcional] O número de elementos fornecidos na rgelt.O chamador pode passar null se celt for 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 vsshell80.idl:
HRESULT IVsEnumNavInfoNodes::Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] IVsNavInfoNode **rgelt,
[out] ULONG *pceltFetched
);
Consulte também
Interface IVsEnumNavInfoNodes
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo