1 instantiation of ExceptionMessage
dotnet (1)
Commands\Test\MTP\IPC\Serializers\TestResultMessagesSerializer.cs (1)
324exceptionMessages.Add(new ExceptionMessage(errorMessage, errorType, stackTrace));
8 references to ExceptionMessage
dotnet (8)
Commands\Test\MTP\IPC\Models\TestResultMessages.cs (1)
8internal 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)
229ExceptionMessage[] exceptionMessages = []; 290private static ExceptionMessage[] ReadExceptionMessagesPayload(Stream stream) 292var exceptionMessages = new List<ExceptionMessage>(); 413private static void WriteExceptionMessagesPayload(Stream stream, ExceptionMessage[]? exceptionMessages) 428foreach (ExceptionMessage exceptionMessage in exceptionMessages) 469private 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}"))}" +