COR_PRF_EVENTPIPE_PARAM_DESC structure

Describes the parameter name and type for an EventPipe event.

Syntax

typedef struct
{
    UINT32       type;
    UINT32       elementType;
    const WCHAR *name;
} COR_PRF_EVENTPIPE_PARAM_DESC;

Members

Member Description
type The type of the parameter.
elementType The element type if this parameter is an array type.
name A wide character string containing the name of the parameter.

Remarks

The COR_PRF_EVENTPIPE_PARAM_DESC structure is used by the ICorProfilerInfo12::EventPipeDefineEvent method to define the parameter types of the event being defined.

Requirements

Platforms: See .NET supported operating systems.

Header: CorProf.idl, CorProf.h

.NET Versions: Available since .NET 5.0

See also