IDebugBinder3::GetAllAliases

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 retrieves a list of aliases from the program.

Syntax

HRESULT GetAllAliases(
   UINT          uRequest,
   IDebugAlias** ppAliases,
   UINT*         puFetched
);
int GetAllAliases(
   uint          uRequest,
   IDebugAlias[] ppAliases,
   out uint      puFetched
);

Parameters

uRequest
[in] The maximum number of aliases to return (specifies the length of the array passed into ppAliases).

ppAliases
[in, out] Array to fill in with aliases (if this is a null value and uRequest is 0, the count of aliases that can be returned will be returned by puFetched).

puFetched
[out] Returns the number of aliases obtained.

Return Value

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

See also