IDebugBinder3

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 provides access to types, aliases, and custom visualizer services.

Syntax

IDebugBinder3 : IDebugBinder

Notes for Implementers

A debug engine implements this interface to support aliases, custom visualizer services, and access to object type information.

Notes for Callers

An IDebugBinder interface obtains this interface by using QueryInterface.

Methods in Vtable order

In addition to the methods provided by the IDebugBinder interface, this interface implements the following:

Method Description
GetMemoryObject Retrieves a memory object representing the memory to which this object is bound.
GetExceptionObjectAndType Retrieves the exception associated with this object (if any),
FindAlias Retrieves an alias given its name,
GetAllAliases Retrieves an array of all aliases for this object,
GetTypeArgumentCount Gets the number of argument types associated with this object,
GetTypeArguments Retrieves a list of argument types associated with this object,
GetEEService Gets an interface to a visualizer service,
GetMemoryContext64 Converts either an object location or a 64-bit memory address to a memory context.

Requirements

Header: ee.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also