IDiaEnumDebugStreams::Item
透過索引或名稱擷取偵錯串流。
語法
HRESULT Item (
VARIANT index,
IDiaEnumDebugStreamData** stream
);
參數
index
[in] 要擷取的偵錯串流的索引或名稱。 如果使用整數變體,則它必須在 0 到 count
-1 範圍內,其中 count
由 IDiaEnumDebugStreams::get_Count 方法傳回。
stream
[out] 傳回代表指定偵錯串流的 IDiaEnumDebugStreamData 物件。
傳回值
如果成功,則會傳回 S_OK
;否則,會傳回錯誤碼。
範例
IDiaEnumDebugStreamData *GetStreamData(IDiaEnumDebugStreams *pStreamList,
LONG whichStream)
{
IDiaEnumDebugStreamData *pStreamData = NULL;
if (pStreamList != NULL)
{
LONG numStreams = 0;
if (pStreamList->get_count(&numStreams) == S_OK &&
whichStream >= 0 && whichStream < numStreams)
{
VARIANT vIndex;
vIndex.vt = VT_I4;
vIndex.lVal = whichStream;
if (pStreamList->Item(vIndex,&pStreamData) != S_OK)
{
std::cerr << "Error retrieving stream " << whichStream << std::endl;
}
}
}
return(pStreamData);
}