IDkmExceptionFormatter.GetAdditionalInformation Method

Definition

Provides additional information about an exception which will appear when Visual Studio stops on the exception. For CLR exceptions, this contains the 'Message' property from the System.Exception which was thrown.

public:
 System::String ^ GetAdditionalInformation(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception);
public:
 Platform::String ^ GetAdditionalInformation(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception);
std::wstring GetAdditionalInformation(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation const & exception);
public string GetAdditionalInformation (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception);
public string? GetAdditionalInformation (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception);
abstract member GetAdditionalInformation : Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation -> string
Public Function GetAdditionalInformation (exception As DkmExceptionInformation) As String

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,Optional] String description of the exception. If no other information is available, null is returned.

Applies to