DkmRuntimeInstructionBreakpoint.TryClearConditionOnTargetDevice Method

Definition

Overloads

Name Description
TryClearConditionOnTargetDevice()

Clear any condition associated with the specified DkmRuntimeInstructionBreakpoint.

TryClearConditionOnTargetDevice(DkmWorkList, DkmCompletionRoutine<DkmTryClearConditionOnTargetDeviceAsyncResult>)

Clear any condition associated with the specified DkmRuntimeInstructionBreakpoint.

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.

TryClearConditionOnTargetDevice()

Clear any condition associated with the specified DkmRuntimeInstructionBreakpoint.

public:
 void TryClearConditionOnTargetDevice();
public:
 void TryClearConditionOnTargetDevice();
void TryClearConditionOnTargetDevice();
public void TryClearConditionOnTargetDevice();
member this.TryClearConditionOnTargetDevice : unit -> unit
Public Sub TryClearConditionOnTargetDevice ()

Applies to

TryClearConditionOnTargetDevice(DkmWorkList, DkmCompletionRoutine<DkmTryClearConditionOnTargetDeviceAsyncResult>)

Clear any condition associated with the specified DkmRuntimeInstructionBreakpoint.

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 TryClearConditionOnTargetDevice(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Breakpoints::DkmTryClearConditionOnTargetDeviceAsyncResult> ^ CompletionRoutine);
public void TryClearConditionOnTargetDevice(Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Breakpoints.DkmTryClearConditionOnTargetDeviceAsyncResult> CompletionRoutine);
member this.TryClearConditionOnTargetDevice : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Breakpoints.DkmTryClearConditionOnTargetDeviceAsyncResult> -> unit
Public Sub TryClearConditionOnTargetDevice (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmTryClearConditionOnTargetDeviceAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmTryClearConditionOnTargetDeviceAsyncResult>

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