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.
Writes the given object specified by the parameter graph as a part of an existing OData message using the given messageWriter and the writeContext.
Namespace: System.Web.OData.Formatter.Serialization
Assembly: System.Web.OData (in System.Web.OData.dll)
Syntax
public virtual void WriteDeltaFeedInline(
object graph,
IEdmTypeReference expectedType,
ODataDeltaWriter writer,
ODataSerializerContext writeContext
)
public:
virtual void WriteDeltaFeedInline(
Object^ graph,
IEdmTypeReference^ expectedType,
ODataDeltaWriter^ writer,
ODataSerializerContext^ writeContext
)
abstract WriteDeltaFeedInline :
graph:Object *
expectedType:IEdmTypeReference *
writer:ODataDeltaWriter *
writeContext:ODataSerializerContext -> unit
override WriteDeltaFeedInline :
graph:Object *
expectedType:IEdmTypeReference *
writer:ODataDeltaWriter *
writeContext:ODataSerializerContext -> unit
Public Overridable Sub WriteDeltaFeedInline (
graph As Object,
expectedType As IEdmTypeReference,
writer As ODataDeltaWriter,
writeContext As ODataSerializerContext
)
Parameters
graph
Type: System.ObjectThe object to be written.
expectedType
Type: Microsoft.OData.Edm.IEdmTypeReferenceThe expected EDM type of the object represented by graph.
writer
Type: Microsoft.OData.Core.ODataDeltaWriterThe ODataDeltaWriter to be used for writing.
writeContext
Type: System.Web.OData.Formatter.Serialization.ODataSerializerContext
See Also
ODataDeltaFeedSerializer Class
System.Web.OData.Formatter.Serialization Namespace
Return to top