PENDING_BP_STATE_INFO

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Contains information about the state of a breakpoint that is ready to bind to a code location.

Syntax

typedef struct _tagPENDING_BP_STATE_INFO {   
   PENDING_BP_STATE       state;  
   PENDING_BP_STATE_FLAGS flags;  
} PENDING_BP_STATE_INFO;  
public struct PENDING_BP_STATE_INFO {   
   public uint state;  
   public uint flags;  
};  

Members

state
A value from the PENDING_BP_STATE enumeration that specifies the state of the pending breakpoint.

flags
A combination of flags from the PENDING_BP_STATE_FLAGS enumeration that specifies whether the breakpoint is virtualized.

Remarks

This structure is passed to the GetState method where it is filled in.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Structures and Unions
GetState
PENDING_BP_STATE
PENDING_BP_STATE_FLAGS