共用方式為


IDiaEnumInjectedSources

列舉各種不同的插入的來源,包含在資料來源。

IDiaEnumInjectedSources : IUnknown

方法 Vtable 順序

下表顯示的方法IDiaEnumInjectedSources

方法

描述

IDiaEnumInjectedSources::get__NewEnum

擷取IEnumVARIANT Interface版的這個列舉值。

IDiaEnumInjectedSources::get_Count

擷取插入來源的數目。

IDiaEnumInjectedSources::Item

會插入的來源擷取的索引。

IDiaEnumInjectedSources::Next

擷取指定的列舉型別序列中的插入來源。

IDiaEnumInjectedSources::Skip

略過指定的數目的列舉型別序列中的插入來源。

IDiaEnumInjectedSources::Reset

將列舉型別序列重設至開頭。

IDiaEnumInjectedSources::Clone

建立列舉值,包含目前的列舉值的列舉型別狀態。

備註

呼叫者的備忘稿

這個介面藉由呼叫IDiaSession::findInjectedSource方法名稱為特定的原始程式檔,或藉由呼叫IDiaSession::getEnumTables方法的 GUID 與IDiaEnumInjectedSources介面。

範例

本範例示範如何取得 ( GetEnumInjectedSources函式),並使用 ( DumpAllInjectedSources函式) IDiaEnumInjectedSources介面。 請參閱IDiaPropertyStorage介面的實作PrintPropertyStorage函式。 替代的輸出,請參閱IDiaInjectedSource介面。

 
IDiaEnumInjectedSources* GetEnumInjectedSources(IDiaSession *pSession)
{
    IDiaEnumInjectedSources* pUnknown    = NULL;
    REFIID                   iid         = __uuidof(IDiaEnumInjectedSources);
    IDiaEnumTables*          pEnumTables = NULL;
    IDiaTable*               pTable      = NULL;
    ULONG                    celt        = 0;

    if (pSession->getEnumTables(&pEnumTables) != S_OK)
    {
        wprintf(L"ERROR - GetTable() getEnumTables\n");
        return NULL;
    }
    while (pEnumTables->Next(1, &pTable, &celt) == S_OK && celt == 1)
    {
        // There is only one table that matches the given iid
        HRESULT hr = pTable->QueryInterface(iid, (void**)&pUnknown);
        pTable->Release();
        if (hr == S_OK)
        {
            break;
        }
    }
    pEnumTables->Release();
    return pUnknown;
}


void DumpAllInjectedSources( IDiaSession* pSession)
{
    IDiaEnumInjectedSources* pEnumInjSources;

    pEnumInjSources = GetEnumInjectedSources(pSession);
    if (pEnumInjSources != NULL)
    {
        IDiaInjectedSource* pInjSource;
        ULONG celt = 0;

        while(pEnumInjSources->Next(1, &pInjSource, &celt) == S_OK &&
              celt == 1)
        {
            IDiaPropertyStorage *pPropertyStorage;
            if (pInjSource->QueryInterface(__uuidof(IDiaPropertyStorage),
                                           (void **)&pPropertyStorage) == S_OK)
            {
                PrintPropertyStorage(pPropertyStorage);
                pPropertyStorage->Release();
            }
            pInjSource->Release();
        }
        pEnumInjSources->Release();
    }
}

需求

標頭: Dia2.h

媒體櫃: diaguids.lib

DLL: msdia80.dll

請參閱

參考

IDiaSession::findInjectedSource

IDiaSession::getEnumTables

IDiaPropertyStorage

IDiaInjectedSource

其他資源

介面 (偵錯介面存取 SDK)