IDebugBinder3::GetTypeArguments

Note

This article applies to Visual Studio 2015. 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 argument types associated with this object.

Syntax

HRESULT GetTypeArguments(
   UINT          skip,
   UINT          count,
   IDebugField** ppFields,
   UINT*         pFetched
);
int GetTypeArguments(
   uint          skip,
   uint          count,
   IDebugField[] ppFields,
   out uint      pFetched
);

Parameters

skip

[in] Number of fields to skip before getting argument types.

count

[in] The number of argument fields to return (also specifies the size of the ppFields array).

ppFields

[in, out] An array of fields that will be filled in on return of this method.

pFetched

[out] The number of argument type fields actually returned (optional).

Return Value

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

Remarks

The number of argument types can be obtained beforehand with GetTypeArgumentCount.

See Also