IDebugReference2::GetDerivedMostReference
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Gets the derived-most reference of a reference. Reserved for future use.
Syntax
HRESULT GetDerivedMostReference(
IDebugReference2** ppDerivedMost
);
int GetDerivedMostReference(
out IDebugReference2 ppDerivedMost
);
Parameters
ppDerivedMost
[out] Returns an IDebugReference2 object that represents the derived-most property.
Return Value
Always returns E_NOTIMPL
.
Remarks
For example, if this property describes an object that implements ClassRoot
but which is actually an instantiation of ClassDerived
that is derived from ClassRoot
, then this method returns an IDebugReference2 object representing a reference to the ClassDerived
object.