IDebugObject:: GetValue

获取对象的值作为字节顺序一系列更改。

HRESULT GetValue( 
   BYTE* pValue,
   UINT  nSize
);
int GetValue(
   ref byte[] pValue, 
   uint nSize
);

参数

  • pValue
    [in, out] 用表示对象的值字节顺序的系列填充的数组。

  • nSize
    [in] 获取的最大字节数。

返回值

如果成功,则返回 S_OK;否则,返回错误代码。

备注

获取的值字节的总数可通过调用 IDebugObject:: GetSize 方法获取。

请参见

参考

IDebugObject