共用方式為


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;
};

Members

  • pThread
    IDebugThread2物件,代表使用中的執行緒,包含中斷點的應用程式。

  • styleCondition
    介於BP_COND_STYLE列舉型別描述此中斷點條件的樣式。

  • bstrContext
    中斷點的位置。

  • bstrCondition
    引發之中斷點的條件。

  • nRadix
    若要用來評估任何數字資訊的基數。

備註

這個結構屬於BP_REQUEST_INFOBP_REQUEST_INFO2結構。

此結構也會當做參數傳遞IDebugBoundBreakpoint2::SetConditionIDebugPendingBreakpoint2::SetCondition方法。

需求

標頭: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

組件: Microsoft.VisualStudio.Debugger.Interop.dll

請參閱

參考

結構和等位

BP_REQUEST_INFO

BP_REQUEST_INFO2

IDebugBoundBreakpoint2::SetCondition

IDebugPendingBreakpoint2::SetCondition

IDebugThread2

BP_COND_STYLE