IDkmExceptionFormatter.GetAdditionalInformation 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.
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.