共用方式為


IDataModelManager3::GetModelForType 方法 (dbgmodel.h)

GetModelForType 方法會傳回數據模型,這是指定類型實例的正式可視化檢視。 實際上,此方法會尋找與 RegisterModelForTypeSignature 方法先前呼叫註冊的最佳相符類型簽章,並傳回相關聯的數據模型。

語法

HRESULT GetModelForType(
  IDebugHostType             *type,
  IModelObject               **dataModel,
  IDebugHostTypeSignature    **typeSignature,
  IDebugHostSymbolEnumerator **wildcardMatches
);

參數

type

要尋找透過 RegisterModelForTypeSignature 方法先前呼叫註冊的最佳標準可視化檢視的具體類型實例。

dataModel

此處會傳回數據模型,這是指定類型實例標準可視化檢視,由透過先前呼叫 RegisterModelForTypeSignature 所註冊的最佳比對類型簽章所決定。 此數據模型會自動附加至以類型自變數所指定的類型所建立的任何原生/語言物件。

typeSignature

與 型別相符的類型簽章,導致我們從先前呼叫 RegisterModelForTypeSignature 傳回傳回型別簽章所註冊的數據模型。

wildcardMatches

如果 typeSignature 自變數中傳回的簽章中有通配符,則會在這裡傳回通配符與型別自變數中指定之具體類型實例之間的所有相符專案列舉值。

傳回值

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

言論

範例程式代碼

ComPtr<IDataModelManager3> spManager; /* get the data model manager */
ComPtr<IDebugHostModule> spModule;   /* get a module */

// Find the type of "MyType<int>" within the module
ComPtr<IDebugHostType> spType;
if (SUCCEEDED(spModule->FindTypeByName(L"MyType<int>", &spType)))
{
    // Find the canonical visualizer which would be applied to MyType<int>
    ComPtr<IModelObject> spDataModel;
    ComPtr<IDebugHostTypeSignature> spSignature;
    ComPtr<IDebugHostSymbolEnumerator> spWildcardMatches;

    if (SUCCEEDED(spManager->GetModelForType(spType.Get(), 
                                             &spDataModel, 
                                             &spSignature, 
                                             &spWildcardMatches)))
    {
        // There is a visualizer which matched.
        // spDataModel is the data model object which was registered as 
        //     the canonical visualizer (RegisterModelForTypeSignature)
        // spSignature is the signature which that data model was registered 
        //     against (e.g.: created for MyType<*> via
        //     CreateTypeSignature/RegisterModelForTypeSignature)
        // spWildcardMatches is an enumerator of the wildcard matches between 
        //     the specific type spType and the signature spSignature (here 
        //     int matched *, so there will be one item -- the type 'int' in
        //     the enumerator)
    }

要求

要求 價值
標頭 dbgmodel.h

另請參閱

IDataModelManager3 介面