IXCLRDataTypeDefinition::GetName Method

Gets the fully qualified name for this type definition.

Note

This API was originally designed for internal use in the runtime. Although it is now supported for 3rd party use, we recommend working with ICorDebug and ICorProfiler APIs when possible.

Syntax

HRESULT GetName(
    [in] ULONG32 flags,
    [in] ULONG32 bufLen,
    [out] ULONG32 *nameLen,
    [out, size_is(bufLen)] WCHAR nameBuf[]
);

Parameters

flags
[in] Reserved. Must be 0.

bufLen
[in] The length in characters of the nameBuf buffer.

nameLen
[out] The number of characters in the fully qualified name written to the nameBuf buffer.

nameBuf
[out] The fully qualified name of the type definition.

Remarks

The provided method is part of the IXCLRDataTypeDefinition interface and corresponds to the 15th slot of the virtual method table.

Requirements

Platforms: See System Requirements. Header: None Library: None .NET Framework Versions: Available since 4.7

See also