BP_CONDITION

描述断点激发的条件。

typedef struct _BP_CONDITION { 
   IDebugThread2* pThread;
   BP_COND_STYLE  styleCondition;
   BSTR           bstrContext;
   BSTR           bstrCondition;
   UINT           nRadix;
} BP_CONDITION;
public struct BP_CONDITION { 
   public IDebugThread2 pThread;
   public uint          styleCondition;
   public string        bstrContext;
   public string        bstrCondition;
   public uint          nRadix;
};

成员

  • pThread
    表示应用程序的活动线程包含断点的 IDebugThread2 对象。

  • styleCondition
    从描述该断点条件的样式 BP_COND_STYLE 枚举的值。

  • bstrContext
    断点的位置。

  • bstrCondition
    断点的激发条件。

  • nRadix
    用于计算任何数值信息基数。

备注

此结构是 BP_REQUEST_INFOBP_REQUEST_INFO2 结构的成员。

此结构参数形式传递给 IDebugBoundBreakpoint2:: SetConditionIDebugPendingBreakpoint2:: SetCondition 方法。

要求

标题:msdbg.h

命名空间:Microsoft.VisualStudio.Debugger.Interop

程序集:Microsoft.VisualStudio.Debugger.Interop.dll

请参见

参考

结构和联合

BP_REQUEST_INFO

BP_REQUEST_INFO2

IDebugBoundBreakpoint2:: SetCondition

IDebugPendingBreakpoint2:: SetCondition

IDebugThread2

BP_COND_STYLE