11 references to ReaderErrorType
Microsoft.Build (7)
Logging\BinaryLogger\BuildEventArgsReader.cs (4)
252HandleError(ErrorFactory, _skipUnknownEvents, ReaderErrorType.UnknownFormatOfEventData, recordKind, e); 263HandleError(ErrorFactory, _skipUnknownEvents, ReaderErrorType.UnknownEventType, recordKind); 272HandleError(ErrorFactory, _skipUnknownEventParts, ReaderErrorType.UnknownEventData, recordKind); 280void HandleError(FormatErrorMessage msgFactory, bool noThrow, ReaderErrorType readerErrorType, BinaryLogRecordKind recordKind, Exception? innerException = null)
Logging\BinaryLogger\Postprocessing\BinaryLogReaderErrorEventArgs.cs (2)
23ReaderErrorType errorType, 35public ReaderErrorType ErrorType { get; }
Logging\BinaryLogger\Postprocessing\IBuildEventArgsReaderNotifications.cs (1)
45/// In case of <see cref="ReaderErrorType.UnknownEventData"/> this is raised before returning the structured representation of a build event
Microsoft.Build.Engine.UnitTests (4)
BuildEventArgsSerialization_Tests.cs (4)
955readerErrors[0].ErrorType.ShouldBe(ReaderErrorType.UnknownEventData); 1015readerErrors[0].ErrorType.ShouldBe(ReaderErrorType.UnknownEventType); 1066readerErrors[0].ErrorType.ShouldBe(ReaderErrorType.UnknownFormatOfEventData); 1122readerErrors[0].ErrorType.ShouldBe(ReaderErrorType.UnknownFormatOfEventData);