1 instantiation of ExceptionMessage
dotnet (1)
Commands\Test\MTP\IPC\Serializers\TestResultMessagesSerializer.cs (1)
324
exceptionMessages.Add(new
ExceptionMessage
(errorMessage, errorType, stackTrace));
8 references to ExceptionMessage
dotnet (8)
Commands\Test\MTP\IPC\Models\TestResultMessages.cs (1)
8
internal sealed record FailedTestResultMessage(string? Uid, string? DisplayName, byte? State, long? Duration, string? Reason,
ExceptionMessage
[]? Exceptions, string? StandardOutput, string? ErrorOutput, string? SessionUid);
Commands\Test\MTP\IPC\Serializers\TestResultMessagesSerializer.cs (6)
229
ExceptionMessage
[] exceptionMessages = [];
290
private static
ExceptionMessage
[] ReadExceptionMessagesPayload(Stream stream)
292
var exceptionMessages = new List<
ExceptionMessage
>();
413
private static void WriteExceptionMessagesPayload(Stream stream,
ExceptionMessage
[]? exceptionMessages)
428
foreach (
ExceptionMessage
exceptionMessage in exceptionMessages)
469
private static ushort GetFieldCount(
ExceptionMessage
exceptionMessage) =>
Commands\Test\MTP\TestApplicationHandler.cs (1)
348
$"{failedTestResult.State}, {failedTestResult.Duration}, {failedTestResult.Reason}, {string.Join(", ", (failedTestResult.Exceptions ?? Array.Empty<
ExceptionMessage
>()).Select(e => $"{e.ErrorMessage}, {e.ErrorType}, {e.StackTrace}"))}" +