ICorProfilerInfo3::GetFunctionTailcall3Info Method

Provides the stack frame of the function that is being reported to the profiler by the FunctionTailcall3WithInfo function. This method can be called only during the FunctionTailcall3WithInfo callback.

Syntax

HRESULT GetFunctionTailcall3Info(
            [in]  FunctionID functionId,
            [in]  COR_PRF_ELT_INFO eltInfo,  
            [out] COR_PRF_FRAME_INFO *pFrameInfo);  

Parameters

functionId
[in] The FunctionID of the function that is returning.

eltInfo
[in] An opaque handle that represents information about a given stack frame. The profiler should provide the same eltInfo that was given to the profiler by the FunctionTailcall3WithInfo function.

pFrameInfo
[out] An opaque handle that represents generics information about a given stack frame. This handle is valid only during the FunctionTailcall3WithInfo callback in which the profiler called the GetFunctionTailcall3Info method.

Remarks

Requirements

Platforms: See System Requirements.

Header: CorProf.idl, CorProf.h

Library: CorGuids.lib

.NET Framework Versions: Available since 4

See also