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 ODataReader to read an entry.
Namespace: Microsoft.OData.Core
Assembly: Microsoft.OData.Core (in Microsoft.OData.Core.dll)
Overload List
| Name | Description | |
|---|---|---|
![]() |
CreateODataEntryReader() | Creates an ODataReader to read an entry. |
![]() |
CreateODataEntryReader(IEdmEntityType) | Creates an ODataReader to read an entry. |
![]() |
CreateODataEntryReader(IEdmNavigationSource, IEdmEntityType) | Creates an ODataReader to read an entry. |
See Also
ODataMessageReader Class
Microsoft.OData.Core Namespace
Return to top
ODataMessageReader.CreateODataEntryReader Method ()
Creates an ODataReader to read an entry.
Syntax
public ODataReader CreateODataEntryReader()
public:
ODataReader^ CreateODataEntryReader()
member CreateODataEntryReader : unit -> ODataReader
Public Function CreateODataEntryReader As ODataReader
Return Value
Type: Microsoft.OData.Core.ODataReader
The created reader.
Return to top
ODataMessageReader.CreateODataEntryReader Method (IEdmEntityType)
Creates an ODataReader to read an entry.
Syntax
public ODataReader CreateODataEntryReader(
IEdmEntityType entityType
)
public:
ODataReader^ CreateODataEntryReader(
IEdmEntityType^ entityType
)
member CreateODataEntryReader :
entityType:IEdmEntityType -> ODataReader
Public Function CreateODataEntryReader (
entityType As IEdmEntityType
) As ODataReader
Parameters
entityType
Type: Microsoft.OData.Edm.IEdmEntityTypeThe expected entity type for the entry to be read.
Return Value
Type: Microsoft.OData.Core.ODataReader
The created reader.
Return to top
ODataMessageReader.CreateODataEntryReader Method (IEdmNavigationSource, IEdmEntityType)
Creates an ODataReader to read an entry.
Syntax
public ODataReader CreateODataEntryReader(
IEdmNavigationSource navigationSource,
IEdmEntityType entityType
)
public:
ODataReader^ CreateODataEntryReader(
IEdmNavigationSource^ navigationSource,
IEdmEntityType^ entityType
)
member CreateODataEntryReader :
navigationSource:IEdmNavigationSource *
entityType:IEdmEntityType -> ODataReader
Public Function CreateODataEntryReader (
navigationSource As IEdmNavigationSource,
entityType As IEdmEntityType
) As ODataReader
Parameters
navigationSource
Type: Microsoft.OData.Edm.IEdmNavigationSourceThe navigation source we are going to read entities for.
entityType
Type: Microsoft.OData.Edm.IEdmEntityTypeThe expected entity type for the entry to be read.
Return Value
Type: Microsoft.OData.Core.ODataReader
The created reader.
Return to top
.gif)