Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 | |
|---|---|---|
![]() |
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). |
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
expectedItemTypeReference
Type: Microsoft.OData.Edm.IEdmTypeReferenceThe expected type reference for the items in the collection.
Return Value
Type: Microsoft.OData.Core.ODataCollectionReader
The created collection reader.
Return to top
.gif)