IDkmExceptionController.CanModifyProcessing(DkmExceptionInformation) Method

Definition

Determines if processing for this exception may be modified by the debugger. For example, if this user has performed an action (such as set next statement) that required the exception to be implicitly squashed, this may return false. This method may also return false if the runtime does not permit the exception from being squashed.

public:
 bool CanModifyProcessing(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception);
public:
 bool CanModifyProcessing(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception);
bool CanModifyProcessing(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation const & exception);
public bool CanModifyProcessing (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception);
abstract member CanModifyProcessing : Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation -> bool
Public Function CanModifyProcessing (exception As DkmExceptionInformation) As Boolean

Parameters

exception
DkmExceptionInformation

[In] Provides information about an exception which was raised in the target process. This information includes details of what exception was raised and the current stage of exception processing.

Returns

[Out] True if the debug monitor is able to modify the processing of this exceptions.

Applies to