This topic has not yet been rated - Rate this topic

BP_ERROR_RESOLUTION_INFO

Describes the resolution of an error breakpoint, including location, program, and thread.

public struct BP_ERROR_RESOLUTION_INFO { 
   public uint                   dwFields;
   public BP_RESOLUTION_LOCATION bpResLocation;
   public IDebugProgram2         pProgram;
   public IDebugThread2          pThread;
   public string                 bstrMessage;
   public uint                   dwType;
};
dwFields

A combination of values from the BPERESI_FIELDS enumeration specifying which fields of this structure are filled out.

bpResLocation

The BP_RESOLUTION_LOCATION union, which specifies the breakpoint resolution location.

pProgram

The IDebugProgram2 object that represents the application in which the breakpoint error occurred.

pThread

The IDebugThread2 object that represents the thread on which the application that generated the breakpoint error is running.

bstrMessage

A string containing any warning or error message resulting from this error resolution.

dwType

A value from the BP_ERROR_TYPE enumeration that specifies the breakpoint error type.

This structure is returned from the IDebugErrorBreakpointResolution2::GetResolutionInfo method.

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ