IDebugCustomAttributeQuery:: IsCustomAttributeDefined
Determina se l'attributo personalizzato specificato non è definito.
HRESULT IsCustomAttributeDefined(
LPCOLESTR pszCustomAttributeName
);
int IsCustomAttributeDefined(
string pszCustomAttributeName
);
Parametri
- pszCustomAttributeName
[in] Nome dell'attributo personalizzato.
Valore restituito
se l'attributo personalizzato è definito, restituisce S_OK; in caso contrario, restituisce S_FALSE.
Esempio
Nell'esempio seguente viene illustrato come implementare questo metodo per un oggetto di CDebugClassFieldSymbol che espone IDebugCustomAttributeQuery l'interfaccia.
HRESULT CDebugClassFieldSymbol::IsCustomAttributeDefined(
LPCOLESTR pszCustomAttribute
)
{
HRESULT hr = S_FALSE;
CComPtr<IMetaDataImport> pMetadata;
mdToken token = mdTokenNil;
CComPtr<IDebugField> pField;
CComPtr<IDebugCustomAttributeQuery> pCA;
ASSERT(IsValidWideStringPtr(pszCustomAttribute));
METHOD_ENTRY( CDebugClassFieldSymbol::IsCustomAttributeDefined );
IfFalseGo( pszCustomAttribute, E_INVALIDARG );
IfFailGo( m_spSH->GetMetadata( m_spAddress->GetModule(), &pMetadata ) );
IfFailGo( CDebugCustomAttribute::GetTokenFromAddress( m_spAddress, &token) );
IfFailGo( pMetadata->GetCustomAttributeByName( token,
pszCustomAttribute,
NULL,
NULL ) );
Error:
METHOD_EXIT( CDebugClassFieldSymbol::IsCustomAttributeDefined, hr );
if (hr != S_OK)
{
hr = S_FALSE;
}
return hr;
}