Share via


IDebugEngine2::RemoveAllSetExceptions

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Removes the list of exceptions the IDE has set for a particular run-time architecture or language.

Syntax

HRESULT RemoveAllSetExceptions( 
   REFGUID guidType
);
int RemoveAllSetExceptions( 
   ref Guid guidType
);

Parameters

guidType
[in] Either the GUID for the language or the GUID for the debug engine that is specific to a run-time architecture.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

The exceptions removed by this method were set by earlier calls to the SetException method.

To remove a specific exception, call the RemoveSetException method.

See also