Delen via


ODataMessageReader.CreateODataCollectionReader Method

Definition

Overloads

CreateODataCollectionReader()

Creates an ODataCollectionReader to read a collection of primitive or complex values (as result of a service operation invocation).

CreateODataCollectionReader(IEdmTypeReference)

Creates an ODataCollectionReader to read a collection of primitive or complex values (as result of a service operation invocation).

CreateODataCollectionReader()

Creates an ODataCollectionReader to read a collection of primitive or complex values (as result of a service operation invocation).

public Microsoft.OData.ODataCollectionReader CreateODataCollectionReader ();
member this.CreateODataCollectionReader : unit -> Microsoft.OData.ODataCollectionReader
Public Function CreateODataCollectionReader () As ODataCollectionReader

Returns

The created collection reader.

Applies to

CreateODataCollectionReader(IEdmTypeReference)

Creates an ODataCollectionReader to read a collection of primitive or complex values (as result of a service operation invocation).

public Microsoft.OData.ODataCollectionReader CreateODataCollectionReader (Microsoft.OData.Edm.IEdmTypeReference expectedItemTypeReference);
member this.CreateODataCollectionReader : Microsoft.OData.Edm.IEdmTypeReference -> Microsoft.OData.ODataCollectionReader
Public Function CreateODataCollectionReader (expectedItemTypeReference As IEdmTypeReference) As ODataCollectionReader

Parameters

expectedItemTypeReference
IEdmTypeReference

The expected type reference for the items in the collection.

Returns

The created collection reader.

Applies to