共用方式為


IDebugHostBaseClass2::GetContext 方法 (dbgmodel.h)

GetContext 方法會傳回符號有效的內容。 雖然這會代表符號所在的偵錯目標和進程/位址空間等專案,但可能不像從其他方法擷取的內容那樣特定(例如:從 IModelObject)。

語法

HRESULT GetContext(
  IDebugHostContext **context
);

參數

context

符號所在的主機內容將會在此傳回。

傳回值

此方法會傳回表示成功或失敗的 HRESULT。

言論

程式代碼範例

ComPtr<IDebugHostSymbol> spSymbol; /* get a symbol */

ComPtr<IDebugHostContext> spContext;
if (SUCCEEDED(spSymbol->GetContext(&spContext)))
{
    // spContext will contain the context that the symbol is within 
    // (e.g.: session, process)
}

要求

要求 價值
標頭 dbgmodel.h

另請參閱

IDebugHostBaseClass2 介面