ODataParameterReaderState 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 ODataParameterReader.
public enum ODataParameterReaderState
type ODataParameterReaderState =
Public Enum ODataParameterReaderState
- Inheritance
-
ODataParameterReaderState
Fields
Name | Value | Description |
---|---|---|
Start | 0 | The reader is at the start; nothing has been read yet. |
Value | 1 | The reader read a primitive or a complex parameter. |
Collection | 2 | The reader is reading a collection parameter. |
Exception | 3 | The reader has thrown an exception; nothing can be read from the reader anymore. |
Completed | 4 | The reader has completed; nothing can be read anymore. |
Resource | 5 | The reader is reading a resource parameter. |
ResourceSet | 6 | The reader is reading a resource set parameter. |