Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
Specifies the breakpoint condition style for pending and bound breakpoints.
Syntax
public enum enum_BP_COND_STYLE {
BP_COND_NONE = 0x0000,
BP_COND_WHEN_TRUE = 0x0001,
BP_COND_WHEN_CHANGED = 0x0002
};
Fields
BP_COND_NONE
Fires the breakpoint when the breakpoint's position is reached. No breakpoint condition specified.
BP_COND_WHEN_TRUE
Fires the breakpoint only when the conditional expression associated with the breakpoint evaluates to true.
BP_COND_WHEN_CHANGED
Fires the breakpoint only when the value of the conditional expression associated with the breakpoint has changed from its previous evaluation.
Remarks
Used for the styleCondition member of the BP_CONDITION structure.
Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll