ODataMessageReader.CreateODataCollectionReader Method

 

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

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

Overload List

Name Description
System_CAPS_pubmethod CreateODataCollectionReader()

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

System_CAPS_pubmethod CreateODataCollectionReader(IEdmTypeReference)

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

See Also

ODataMessageReader Class
Microsoft.OData.Core Namespace

Return to top

ODataMessageReader.CreateODataCollectionReader Method ()

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

Syntax

public ODataCollectionReader CreateODataCollectionReader()
public:
ODataCollectionReader^ CreateODataCollectionReader()
member CreateODataCollectionReader : unit -> ODataCollectionReader
Public Function CreateODataCollectionReader As ODataCollectionReader

Return Value

Type: Microsoft.OData.Core.ODataCollectionReader

The created collection reader.

Return to top

ODataMessageReader.CreateODataCollectionReader Method (IEdmTypeReference)

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

Syntax

public ODataCollectionReader CreateODataCollectionReader(
    IEdmTypeReference expectedItemTypeReference
)
public:
ODataCollectionReader^ CreateODataCollectionReader(
    IEdmTypeReference^ expectedItemTypeReference
)
member CreateODataCollectionReader : 
        expectedItemTypeReference:IEdmTypeReference -> ODataCollectionReader
Public Function CreateODataCollectionReader (
    expectedItemTypeReference As IEdmTypeReference
) As ODataCollectionReader

Parameters

Return Value

Type: Microsoft.OData.Core.ODataCollectionReader

The created collection reader.

Return to top