共用方式為


IDataModelManager3::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<IDataModelManager3> 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

另請參閱

IDataModelManager3 介面