4 references to GetFormattedExceptionStack
Microsoft.VisualStudio.LanguageServices (4)
ErrorReporting\VisualStudioErrorReportingService.cs (2)
48
var stackTrace = exception is null ? "" :
GetFormattedExceptionStack
(exception);
61
var errorInfo =
GetFormattedExceptionStack
(exception);
ErrorReporting\VisualStudioErrorReportingService.ExceptionFormatting.cs (2)
40
text = $"{text}{Environment.NewLine}---> (Inner Exception #{i}) {
GetFormattedExceptionStack
(aggregate.InnerExceptions[i])} <--- {Environment.NewLine}";
66
stackText += " ---> " +
GetFormattedExceptionStack
(innerException) + Environment.NewLine +