Share via


ODataCollectionReaderState Enumeration

 

Enumerates all possible states of an ODataCollectionReader.

Namespace:   Microsoft.OData.Core
Assembly:  Microsoft.OData.Core (in Microsoft.OData.Core.dll)

Syntax

public enum ODataCollectionReaderState
public enum class ODataCollectionReaderState
type ODataCollectionReaderState
Public Enumeration ODataCollectionReaderState

Members

Member name Description
CollectionEnd

The reader has finished reading and is reading the end element of the collection wrapper (if any). All items have been read.

CollectionStart

The reader has started reading and is reading the start element of the collection wrapper (if any). No items have been read.

Completed

The reader has completed; nothing can be read anymore.

Exception

The reader has thrown an exception; nothing can be read from the reader anymore.

Start

The reader is at the start; nothing has been read yet.

Value

The reader read an item from the collection.

See Also

Microsoft.OData.Core Namespace

Return to top