BP_LOCATION_CODE_STRING

Used for setting code breakpoints based on a string that the user can enter from the integrated development environment (IDE).

Syntax

typedef struct _BP_LOCATION_CODE_STRING {
    BSTR bstrContext;
    BSTR bstrCodeExpr;
} BP_LOCATION_CODE_STRING;

Members

bstrContext
The context of the breakpoint within the code, typically a method or function name as seen on a call stack.

bstrCodeExpr
The string that the user types in to describe the code breakpoint.

Remarks

This structure is a member of the BP_LOCATION structure as part of a union.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also