ODataDeltaReaderState 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 ODataDeltaReader.
public enum ODataDeltaReaderState
type ODataDeltaReaderState =
Public Enum ODataDeltaReaderState
- Inheritance
-
ODataDeltaReaderState
Fields
Name | Value | Description |
---|---|---|
Start | 0 | The reader is at the start; nothing has been read yet. |
DeltaResourceSetStart | 1 | The start of a delta resource set has been read. |
DeltaResourceSetEnd | 2 | The end of a delta resource set has been read. |
DeltaResourceStart | 3 | The start of a delta resource has been read. |
DeltaResourceEnd | 4 | The end of a delta resource has been read. |
DeltaDeletedEntry | 5 | An delta deleted resource was read. |
DeltaLink | 6 | An delta link was read. |
DeltaDeletedLink | 7 | An delta deleted 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. |
NestedResource | 10 | A nested resource info was read. |