IDebugField::GetInfo

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

This method gets displayable information about the field.

Syntax

HRESULT GetInfo( 
   FIELD_INFO_FIELDS dwFields,
   FIELD_INFO* pFieldInfo
);
int GetInfo(
   enum_FIELD_INFO_FIELDS dwFields,
   FIELD_INFO[] pFieldInfo
);

Parameters

dwFields
[in] A combination of FIELD_INFO_FIELDS constants that selects the information to be displayed. If the field represents a symbol, this is typically the symbol name and type.

pFieldInfo
[out] Returns the information in the supplied FIELD_INFO structure.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

See also