IDebugGenericParamField:: GetNameOfFormalParam
Recupera il nome del parametro generico.
HRESULT GetNameOfFormalParam (
BSTR* pbstrName
);
int GetNameOfFormalParam (
string pbstrName
);
Parametri
- pbstrName
[out] Nome del parametro generico.
Valore restituito
Se l'operazione riesce, restituisce S_OK; in caso contrario, restituisce un codice di errore.
Esempio
Nell'esempio seguente viene illustrato come implementare questo metodo per un oggetto di CDebugGenericParamFieldType che espone IDebugGenericParamField l'interfaccia.
HRESULT CDebugGenericParamFieldType::GetNameOfFormalParam(BSTR *pbstrName)
{
HRESULT hr = S_OK;
CComBSTR bstrName;
METHOD_ENTRY( CDebugGenericParamFieldType::GetNameOfFormalParam );
IfFalseGo( pbstrName, E_INVALIDARG );
IfFailGo( this->LoadProps() );
IfNullGo( *pbstrName = SysAllocString(m_bstrName), E_OUTOFMEMORY );
Error:
METHOD_EXIT( CDebugGenericParamFieldType::GetNameOfFormalParam, hr );
return hr;
}