ICorProfilerFunctionEnum Interface
Provides methods to sequentially iterate through a collection of functions in the common language runtime.
Methods
Method |
Description |
---|---|
Gets an interface pointer to a copy of this ICorProfilerFunctionEnum interface. |
|
Gets the number of functions that were loaded by the application or forcibly loaded by the profiler. |
|
Gets the specified number of contiguous functions from a sequential collection of functions, starting at the enumerator's current position in the sequence. |
|
Moves the enumerator's cursor to the starting position of the sequence. |
|
Advances the enumerator's cursor from its current position so that the specified number of elements are skipped. |
Remarks
The ICorProfilerFunctionEnum 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.
ICorProfilerFunctionEnum enumerates over functions that have already been JIT-compiled, but does not include functions that are loaded from native images generated with Ngen.exe.
Requirements
Platforms: See .NET Framework System Requirements.
Header: CorProf.idl, CorProf.h
Library: CorGuids.lib
.NET Framework Versions: 4
See Also
Reference
ICorProfilerInfo3::EnumJITedFunctions Method
Concepts
Profiling and Runtime Notification IDs