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.
Deserializes the navigation properties from entryWrapper into entityResource.
Namespace: System.Web.Http.OData.Formatter.Deserialization
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
public virtual void ApplyNavigationProperties(
object entityResource,
ODataEntryWithNavigationLinks entryWrapper,
IEdmEntityTypeReference entityType,
ODataDeserializerContext readContext
)
public:
virtual void ApplyNavigationProperties(
Object^ entityResource,
ODataEntryWithNavigationLinks^ entryWrapper,
IEdmEntityTypeReference^ entityType,
ODataDeserializerContext^ readContext
)
abstract ApplyNavigationProperties :
entityResource:Object *
entryWrapper:ODataEntryWithNavigationLinks *
entityType:IEdmEntityTypeReference *
readContext:ODataDeserializerContext -> unit
override ApplyNavigationProperties :
entityResource:Object *
entryWrapper:ODataEntryWithNavigationLinks *
entityType:IEdmEntityTypeReference *
readContext:ODataDeserializerContext -> unit
Public Overridable Sub ApplyNavigationProperties (
entityResource As Object,
entryWrapper As ODataEntryWithNavigationLinks,
entityType As IEdmEntityTypeReference,
readContext As ODataDeserializerContext
)
Parameters
entityResource
Type: System.ObjectThe object into which the navigation properties should be read.
entryWrapper
Type: System.Web.Http.OData.Formatter.Deserialization.ODataEntryWithNavigationLinksThe entry object containing the navigation properties.
entityType
Type: Microsoft.Data.Edm.IEdmEntityTypeReferenceThe entity type of the entity resource.
readContext
Type: System.Web.Http.OData.Formatter.Deserialization.ODataDeserializerContextThe deserializer context.
See Also
ODataEntityDeserializer Class
System.Web.Http.OData.Formatter.Deserialization Namespace
Return to top