ICorProfilerModuleEnum::Next Method
Gets the specified number of contiguous modules from a sequential collection of modules, starting at the enumerator's current position in the sequence.
Syntax
HRESULT Next([in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)]
ModuleID ids[],
[out] ULONG * pceltFetched);
Parameters
celt
[in] The number of modules to retrieve.
ids
[out] An array of ModuleID
values, each of which represents a retrieved module.
pceltFetched
[out] A pointer to the number of elements actually returned in the ids
array.
Return Value
This method returns the following specific HRESULTs as well as HRESULT errors that indicate method failure.
HRESULT | Description |
---|---|
S_OK | celt elements were returned. |
S_FALSE | Fewer than celt elements were returned, which indicates that the enumeration is complete. |
Requirements
Platforms: See System Requirements.
Header: CorProf.idl, CorProf.h
Library: CorGuids.lib
.NET Framework Versions: Available since 4
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.