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 structural 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 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.Http.OData.Formatter.Deserialization.ODataEntryWithNavigationLinksThe entry object containing the structural 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