DkmRuntimeInstructionBreakpoint.TryClearConditionOnTargetDevice Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.