IDataModelScriptDebugStackFrame::GetName method (dbgmodel.h)

The GetName method returns the display name (e.g.: function name) of this frame. Such name will be displayed within the stack backtrace presented to the user in the debugger interface.

Syntax

HRESULT GetName(
  BSTR *name
);

Parameters

name

The display name (e.g.: function name) of the frame is returned here as a string allocated via the SysAllocString method. The caller is responsible for freeing this string with SysFreeString.

Return value

This method returns HRESULT which indicates success or failure.

Requirements

Requirement Value
Header dbgmodel.h

See also

IDataModelScriptDebugStackFrame interface