A implementação de GetMethodProperty
Visual Studio chama o mecanismo de depuração (DE) IDebugStackFrame2::GetDebugProperty, que por sua vez chama IDebugExpressionEvaluator::GetMethodProperty para obter informações sobre o método atual na estrutura de pilhas.
Essa implementação do IDebugExpressionEvaluator::GetMethodProperty realiza as seguintes tarefas:
Chamadas IDebugSymbolProvider::GetContainerField, passing na IDebugAddress objeto. O provedor do símbolo (SP) retorna um IDebugContainerField que representa o método que contém o endereço especificado.
Obtém o IDebugMethodField partir do IDebugContainerField.
Instancia uma classe (chamado CFieldProperty neste exemplo) que implementa o IDebugProperty2 interface e contém o IDebugMethodField objeto retornado do SP.
Retorna o IDebugProperty2 interface a partir de CFieldProperty objeto.
Código gerenciado
Este exemplo mostra uma implementação de IDebugExpressionEvaluator::GetMethodProperty em código gerenciado.
namespace EEMC
{
[GuidAttribute("462D4A3D-B257-4AEE-97CD-5918C7531757")]
public class EEMCClass : IDebugExpressionEvaluator
{
public HRESULT GetMethodProperty(
IDebugSymbolProvider symbolProvider,
IDebugAddress address,
IDebugBinder binder,
int includeHiddenLocals,
out IDebugProperty2 property)
{
IDebugContainerField containerField = null;
IDebugMethodField methodField = null;
property = null;
// Get the containing method field.
symbolProvider.GetContainerField(address, out containerField);
methodField = (IDebugMethodField) containerField;
// Return the property of method field.
property = new CFieldProperty(symbolProvider, address, binder, methodField);
return COM.S_OK;
}
}
}
Código não gerenciado
Este exemplo mostra uma implementação de IDebugExpressionEvaluator::GetMethodProperty em código não gerenciado.
[CPP]
STDMETHODIMP CExpressionEvaluator::GetMethodProperty(
in IDebugSymbolProvider *pprovider,
in IDebugAddress *paddress,
in IDebugBinder *pbinder,
in BOOL includeHiddenLocals,
out IDebugProperty2 **ppproperty
)
{
if (pprovider == NULL)
return E_INVALIDARG;
if (ppproperty == NULL)
return E_INVALIDARG;
else
*ppproperty = 0;
HRESULT hr;
IDebugContainerField* pcontainer = NULL;
hr = pprovider->GetContainerField(paddress, &pcontainer);
if (FAILED(hr))
return hr;
IDebugMethodField* pmethod = NULL;
hr = pcontainer->QueryInterface( IID_IDebugMethodField,
reinterpret_cast<void**>(&pmethod));
pcontainer->Release();
if (FAILED(hr))
return hr;
CFieldProperty* pfieldProperty = new CFieldProperty( pprovider,
paddress,
pbinder,
pmethod );
pmethod->Release();
if (!pfieldProperty)
return E_OUTOFMEMORY;
hr = pfieldProperty->Init();
if (FAILED(hr))
{
pfieldProperty->Release();
return hr;
}
hr = pfieldProperty->QueryInterface( IID_IDebugProperty2,
reinterpret_cast<void**>(ppproperty));
pfieldProperty->Release();
return hr;
}