Метод IDataModelManager2::GetRootNamespace (dbgmodel.h)
Метод GetRootNamespace возвращает корневое пространство имен модели данных. Это объект, которым управляет модель данных и в который узел отладки помещает определенные объекты. Ожидается, что каждый узел предоставляет по крайней мере следующую иерархию:
• Debugger - represents the debugger which is hosting the data model
o Sessions - a collection of sessions which represent each debug target
Processes -- a collection of processes which represent each process in the debug target
- Threads -- a collection of threads which represent each thread within a given process in the debug target
Синтаксис
HRESULT GetRootNamespace(
IModelObject **rootNamespace
);
Параметры
rootNamespace
Здесь возвращается корневое пространство имен модели данных.
Возвращаемое значение
Этот метод возвращает HRESULT, указывающее на успех или сбой.
Комментарии
Образец кода
ComPtr<IDataModelManager> spManager; /* get the data model manager */
ComPtr<IModelObject> spRootNamespace;
if (SUCCEEDED(spManager->GetRootNamespace(&spRootNamespace)))
{
// We've gotten the root namespace successfully. Find the Debugger property.
ComPtr<IModelObject> spDebugger;
if (SUCCEEDED(spRootNamespace->GetKeyValue(L"Debugger", &spDebugger, nullptr)))
{
// We've gotten the "Debugger" property successfully. Find the
// Sessions property.
ComPtr<IModelObject> spSessions;
if (SUCCEEDED(spDebugger->GetKeyValue(L"Sessions", &spSessions, nullptr)))
{
// We've gotten the "Sessions" property successfully.
}
}
}
Требования
Требование | Значение |
---|---|
Заголовок | dbgmodel.h |