Método IEnumHierarchies.Next (UInt32, IVsHierarchy , UInt32)
Publicado: agosto de 2016
Recupera o próximo grupo de interfaces de hierarquia (IVsHierarchy).
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int Next(
uint celt,
IVsHierarchy[] rgelt,
out uint pceltFetched
)
int Next(
unsigned int celt,
array<IVsHierarchy^>^ rgelt,
[OutAttribute] unsigned int% pceltFetched
)
abstract Next :
celt:uint32 *
rgelt:IVsHierarchy[] *
pceltFetched:uint32 byref -> int
Function Next (
celt As UInteger,
rgelt As IVsHierarchy(),
<OutAttribute> ByRef pceltFetched As UInteger
) As Integer
Parâmetros
celt
Type: System.UInt32[in] Número de hierarquias para retornar ou zero para indicar uma solicitação para todos os objetos.
rgelt
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy[][out] Uma matriz de IVsHierarchy objetos. Contém pceltFetched objetos.
pceltFetched
Type: System.UInt32[out] Número real de interfaces de hierarquia recuperados.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retornará S_OK. Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
[C++]
HRESULT IEnumHierarchies::Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] IVsHierarchy **rgelt, [out] ULONG *pceltFetched
);
Consulte também
Interface IEnumHierarchies
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo