DkmProcess.ClearExceptionTriggers(Guid) Method

Definition

Removes all the exception triggers which have been set with a particular SourceId. After this method returns, the exception triggers will no longer raise ExceptionTriggerHit events. Exception triggers are automatically cleared when the DkmProcess object is closed.

public:
 void ClearExceptionTriggers(Guid SourceId);
public void ClearExceptionTriggers (Guid SourceId);
member this.ClearExceptionTriggers : Guid -> unit
Public Sub ClearExceptionTriggers (SourceId As Guid)

Parameters

SourceId
Guid

[In] Identifies the source of an object. SourceIds are used to enable filtering in scenarios when multiple components may be creating instances of a class. For example, source ids can be used to determine if a breakpoint comes from the AD7 AL (ex: user breakpoint, or other breakpoint visible at the SDM level) instead of a breakpoint which may be created by another component (for example an internal breakpoint used for stepping).

Applies to