IVsEnumNavInfoNodes::Next Method (UInt32, array<IVsNavInfoNode^>^, UInt32)
Visual Studio 2015
Retrieves a specified number of node items in the enumeration sequence.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int Next( unsigned int celt, array<IVsNavInfoNode^>^ rgelt, [OutAttribute] unsigned int% pceltFetched )
Parameters
- celt
-
Type:
System::UInt32
[in] The number of elements being requested.
- rgelt
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::IVsNavInfoNode^>^
[out] An array of type IVsNavInfoNode that contains requested node items.
- pceltFetched
-
Type:
System::UInt32
[out, optional] The number of elements supplied in rgelt. Caller can pass in null if celt is one.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsEnumNavInfoNodes::Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] IVsNavInfoNode **rgelt,
[out] ULONG *pceltFetched
);
Show: