ICorProfilerModuleEnum Interface

Provides methods to sequentially iterate through a collection of modules loaded by the application or the profiler.

Methods

Method Description
Clone Method Gets an interface pointer to a copy of this ICorProfilerModuleEnum interface.
GetCount Method Gets the number of managed modules that were loaded into the application.
Next Method Gets the specified number of contiguous modules from a sequential collection of objects, starting at the enumerator's current position in the sequence.
Reset Method Moves the enumerator's cursor to the starting position of the sequence.
Skip Method Advances the position of the enumerator's cursor so that the specified number of elements are skipped.

Remarks

The ICorProfilerModuleEnum interface is an enumerator. It allows the receiver of an array to pull elements from the sender at a rate that is appropriate for the receiver. In other words, the receiver is able to explicitly control the flow of array elements, thereby avoiding the problems associated with passing large arrays as method parameters.

Requirements

Platforms: See System Requirements.

Header: CorProf.idl, CorProf.h

Library: CorGuids.lib

.NET Framework Versions: Available since 4

See also