Método IDataModelManager2::GetRootNamespace (dbgmodel.h)
El método GetRootNamespace devuelve el espacio de nombres raíz del modelo de datos. Se trata de un objeto que administra el modelo de datos y en el que el host de depuración coloca determinados objetos. Se espera que cada host exponga al menos la siguiente jerarquía:
• 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
Sintaxis
HRESULT GetRootNamespace(
IModelObject **rootNamespace
);
Parámetros
rootNamespace
Aquí se devuelve el espacio de nombres raíz del modelo de datos.
Valor devuelto
Este método devuelve HRESULT que indica éxito o error.
Comentarios
Código de ejemplo
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.
}
}
}
Requisitos
Requisito | Valor |
---|---|
Header | dbgmodel.h |