Condividi tramite


Metodo IDebugHostData::GetValue (dbgmodel.h)

Restituisce il valore della costante in una struttura di dati VARIANT.

Sintassi

HRESULT GetValue(
  VARIANT *value
);

Parametri

value

Il valore dei dati compressi in un valore VARIANT verrà restituito qui.

Valore restituito

Questo metodo restituisce HRESULT che indica l'esito positivo o negativo.

Commenti

Codice di esempio

ComPtr<IDebugHostData> spData; /* get a data symbol */

VARIANT vtValue;
if (SUCCEEDED(spData->GetValue(&vtValue)))
{
    // For data which has a constant value as determined by GetLocationKind, 
    // vtValue contains the value of the data
    VariantClear(&vtValue);
}

Requisiti

Requisito Valore
Intestazione dbgmodel.h

Vedi anche

Interfaccia IDebugHostData