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