(dbgmodel.h) IDebugHostField::GetLocation 方法
對於具有位址的欄位,不論特定類型實例 (例如位置類型指出LocationStatic) 的欄位,GetLocation 方法會傳回欄位的抽象位置 (位址) 。
如果指定的欄位沒有靜態位置,GetLocation 方法將會失敗。
語法
HRESULT GetLocation(
Location *location
);
參數
location
摘要位置 (例如:字段的位址) 會在這裡傳回。
傳回值
這個方法會傳回 HRESULT,表示成功或失敗。
備註
範例程序代碼*
ComPtr<IDebugHostField> spField; /* get a field symbol (see EnumerateChildren) */
Location fieldLocation;
if (SUCCEEDED(spField->GetLocation(&fieldLocation)))
{
// For fields which have a static location as determined by GetLocationKind,
// the location of the field will be in fieldLocation.
}
規格需求
需求 | 值 |
---|---|
標頭 | dbgmodel.h |