IDebugPointerObject
Important
In Visual Studio 2015, this way of implementing expression evaluators is deprecated. For information about implementing CLR expression evaluators, please see CLR Expression Evaluators and Managed Expression Evaluator Sample.
This interface represents a pointer object.
IDebugPointerObject : IDebugObject
The expression evaluator implements this interface to represent a pointer object.
The IDebugObject interface can obtain this interface by using QueryInterface if the IDebugObject
represents a pointer.
In addition to the methods inherited from IDebugObject, the IDebugPointerObject
interface exposes the following methods.
Method | Description |
---|---|
Dereference | Gets the object to which the interface points. |
GetBytes | Gets the value to which the interface points as a series of consecutive bytes. |
SetBytes | Sets the value to which the interface points from a series of consecutive bytes. |
An expression evaluator uses this interface to represent a pointer in a parse tree.
Header: ee.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll