Edit

IXCLRDataModule::GetName Method

Gets the module's base name.

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 bufLen,
    [out] ULONG32 *nameLen,
    [out, size_is(bufLen)] WCHAR name[]
);

Parameters

bufLen
[in] The number of characters in the name buffer.

nameLen
[out] A pointer to the number of characters actually written into the name buffer.

name
[out, size_is(bufLen)] A pointer to a character array.

Remarks

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

Requirements

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

See also