Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Describes the bound breakpoint information for either a code breakpoint or a data breakpoint.
typedef struct _BP_RESOLUTION_INFO { 
   BPRESI_FIELDS          dwFields;
   BP_RESOLUTION_LOCATION bpResLocation;
   IDebugProgram2*        pProgram;
   IDebugThread2*         pThread;
} BP_RESOLUTION_INFO;
public struct BP_RESOLUTION_INFO { 
   public uint                   dwFields;
   public BP_RESOLUTION_LOCATION bpResLocation;
   public IDebugProgram2         pProgram;
   public IDebugThread2          pThread;
};
Members
- dwFields 
 A collection of flags from the BPRESI_FIELDS enumerations that specifies which fields are filled out.
- bpResLocation 
 The BP_RESOLUTION_LOCATION structure that specifies the location of the breakpoint in code or data.
- pProgram 
 The IDebugProgram2 object that represents the application in which the breakpoint error occurred.
- pThread 
 The IDebugThread2 object that represents the thread in which the application that contains the breakpoint error is running.
Remarks
This structure is returned by IDebugBreakpointResolution2::GetResolutionInfo.
Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll