IDebugSettingsCallback2::EnumEEs

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

Enumerates the available expression evaluators given the language and vendor identifiers.

Syntax

HRESULT EnumEEs(
   DWORD  celtBuffer,
   GUID*  rgguidLang,
   GUID*  rgguidVendor,
   DWORD* pceltEEs
);
public int EnumEEs(
   uint       celtBuffer,
   ref Guid   rgguidLang,
   ref Guid   rgguidVendor,
   ref uint[] pceltEEs
);

Parameters

celtBuffer
[in] Number of elements in the pceltEEs buffer.

rgguidLang
[in, out] Unique identifier for the programming language.

rgguidVendor
[in, out] Unique identifier for the vendor.

pceltEEs
[in, out] Array of expression evaluators.

Return Value

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

See also