IDkmExceptionWinRTErrorExtractor.GetWinRTErrorInfo Method

Definition

Provides developer-oriented additional information about the exception. This info should be displayed along with GetDescription and GetAdditionalInformation to clarify the cause of the error.

public:
 void GetWinRTErrorInfo(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception, [Runtime::InteropServices::Out] System::String ^ % restrictedDescription, [Runtime::InteropServices::Out] System::String ^ % restrictedErrorReference, [Runtime::InteropServices::Out] System::String ^ % restrictedCapabilitySid);
public void GetWinRTErrorInfo (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception, out string restrictedDescription, out string restrictedErrorReference, out string restrictedCapabilitySid);
public void GetWinRTErrorInfo (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception, out string? restrictedDescription, out string? restrictedErrorReference, out string? restrictedCapabilitySid);
abstract member GetWinRTErrorInfo : Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation * string * string * string -> unit
Public Sub GetWinRTErrorInfo (exception As DkmExceptionInformation, ByRef restrictedDescription As String, ByRef restrictedErrorReference As String, ByRef restrictedCapabilitySid 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.

restrictedDescription
String

[Out,Optional] RestrictedErrorInfo description of the exception. Due to security restrictions, this may not be available even if RestrictedErrorInfo is available for the exception.

restrictedErrorReference
String

[Out,Optional] If present, used to retrieve IRestrictedErrorInfo via the RoResolvedRestrictedErrorInfoReference API.

restrictedCapabilitySid
String

[Out,Optional] If present specifies the missing capability.

Applies to