ReaderErrorType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Type of the error that occurred during reading.
public enum class ReaderErrorType
public enum ReaderErrorType
type ReaderErrorType =
Public Enum ReaderErrorType
- Inheritance
-
ReaderErrorType
Fields
Name | Value | Description |
---|---|---|
UnknownEventType | 0 | The encountered event is completely unknown to the reader. It cannot interpret any part of it. |
UnknownEventData | 1 | The encountered event is known to the reader and reader is able to read the event as it knows it. However there are some extra data (append only extension to the event in future version), that reader cannot interpret, it can only skip it. |
UnknownFormatOfEventData | 2 | The encountered event type is known to the reader, but the reader cannot interpret the data of the event. This is probably caused by an event definition changing more than just adding fields. The reader can only skip the event in full. |