DkmRuntimeBreakpoint.ClearHitCountCondition Method

Definition

Overloads

ClearHitCountCondition(DkmBreakpointHitCountCondition, Int32)

Clears the hit count condition on a breakpoint.

ClearHitCountCondition(DkmWorkList, DkmBreakpointHitCountCondition, DkmCompletionRoutine<DkmClearRuntimeBreakpointHitCountConditionAsyncResult>)

Clears the hit count condition on a breakpoint.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

ClearHitCountCondition(DkmBreakpointHitCountCondition, Int32)

Clears the hit count condition on a breakpoint.

public:
 void ClearHitCountCondition(Microsoft::VisualStudio::Debugger::Breakpoints::DkmBreakpointHitCountCondition ^ Condition, [Runtime::InteropServices::Out] int % CurrentHitCount);
public void ClearHitCountCondition (Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointHitCountCondition Condition, out int CurrentHitCount);
member this.ClearHitCountCondition : Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointHitCountCondition * int -> unit
Public Sub ClearHitCountCondition (Condition As DkmBreakpointHitCountCondition, ByRef CurrentHitCount As Integer)

Parameters

Condition
DkmBreakpointHitCountCondition

[In] Condition to apply to this breakpoint.

CurrentHitCount
Int32

[Out] Number of times that the breakpoint has been hit as of the time that the condition was removed.

Applies to

ClearHitCountCondition(DkmWorkList, DkmBreakpointHitCountCondition, DkmCompletionRoutine<DkmClearRuntimeBreakpointHitCountConditionAsyncResult>)

Clears the hit count condition on a breakpoint.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

public:
 void ClearHitCountCondition(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::Breakpoints::DkmBreakpointHitCountCondition ^ Condition, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Breakpoints::DkmClearRuntimeBreakpointHitCountConditionAsyncResult> ^ CompletionRoutine);
public void ClearHitCountCondition (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointHitCountCondition Condition, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Breakpoints.DkmClearRuntimeBreakpointHitCountConditionAsyncResult> CompletionRoutine);
member this.ClearHitCountCondition : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointHitCountCondition * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Breakpoints.DkmClearRuntimeBreakpointHitCountConditionAsyncResult> -> unit
Public Sub ClearHitCountCondition (WorkList As DkmWorkList, Condition As DkmBreakpointHitCountCondition, CompletionRoutine As DkmCompletionRoutine(Of DkmClearRuntimeBreakpointHitCountConditionAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

Condition
DkmBreakpointHitCountCondition

[In] Condition to apply to this breakpoint.

CompletionRoutine
DkmCompletionRoutine<DkmClearRuntimeBreakpointHitCountConditionAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to