ODataReaderState 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.
Enumeration of all possible states of an ODataReader.
public enum ODataReaderState
type ODataReaderState =
Public Enum ODataReaderState
- Inheritance
-
ODataReaderState
Fields
Name | Value | Description |
---|---|---|
Start | 0 | The reader is at the start; nothing has been read yet. |
ResourceSetStart | 1 | The start of a resource set has been read. |
ResourceSetEnd | 2 | The end of a resource set has been read. |
ResourceStart | 3 | The start of a resource has been read. |
ResourceEnd | 4 | The end of a resource has been read. |
NestedResourceInfoStart | 5 | The start of a nested resource info has been read. |
NestedResourceInfoEnd | 6 | The end of a nested resource info has been read. |
EntityReferenceLink | 7 | An entity reference link was read. |
Exception | 8 | The reader has thrown an exception; nothing can be read from the reader anymore. |
Completed | 9 | The reader has completed; nothing can be read anymore. |
Primitive | 10 | The reader is positioned on a non-null primitive value within an untyped collection. |
DeltaResourceSetStart | 11 | The start of a delta resource set has been read. |
DeltaResourceSetEnd | 12 | The end of a delta resource set has been read. |
DeletedResourceStart | 13 | The start of a deleted resource has been read. |
DeletedResourceEnd | 14 | The end of a deleted resource has been read. |
DeltaLink | 15 | The reader is positioned on a delta link. |
DeltaDeletedLink | 16 | The reader is positioned on a delta deleted link. |
NestedProperty | 17 | The reader is reading a property. |
Stream | 18 | The reader is reading a stream. |