Condividi tramite


Metodo IDebugHostField::GetValue (dbgmodel.h)

Per i campi con un valore costante definito all'interno delle informazioni simbolico ,ad esempio campi il cui tipo di posizione indica LocationConstant, il metodo GetValue restituirà il valore costante del campo.

Se il campo specificato non ha un valore costante, il metodo GetValue avrà esito negativo.

Sintassi

HRESULT GetValue(
  VARIANT *value
);

Parametri

value

Il valore del campo compresso in variant verrà restituito qui.

Valore restituito

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

Commenti

Codice di esempio

ComPtr<IDebugHostField> spField; /* get a field (see EnumerateChildren) */

VARIANT vtValue;
if (SUCCEEDED(spField->GetValue(&vtValue)))
{
    // For fields which have a constant value as determined by GetLocationKind, 
    // vtValue will contain the value of the field.
    VariantClear(&vtValue);
}

Requisiti

Requisito Valore
Intestazione dbgmodel.h

Vedi anche

Interfaccia IDebugHostField