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结构的成员。

此结构也作为参数 传递给 SetConditionSetCondition 方法。

要求

标头:msdbg.h

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

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

另请参阅