Share via


ODataWriter Class

 

Represents the base class for OData writers.

Namespace:   Microsoft.OData.Core
Assembly:  Microsoft.OData.Core (in Microsoft.OData.Core.dll)

Inheritance Hierarchy

System.Object
  Microsoft.OData.Core.ODataWriter

Syntax

public abstract class ODataWriter
public ref class ODataWriter abstract 
[<AbstractClass>]
type ODataWriter = class end
Public MustInherit Class ODataWriter

Constructors

Name Description
System_CAPS_protmethod ODataWriter()

Initializes a new instance of the ODataWriter class.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod Flush()

Flushes the write buffer to the underlying stream.

System_CAPS_pubmethod FlushAsync()

Flushes the write buffer to the underlying stream asynchronously.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod WriteEnd()

Finishes the writing of a feed, an entry, or a navigation link.

System_CAPS_pubmethod WriteEndAsync()

Asynchronously finish writing a feed, entry, or navigation link.

System_CAPS_pubmethod WriteEntityReferenceLink(ODataEntityReferenceLink)

Writes an entity reference link, which is used to represent binding to an existing resource in a request payload.

System_CAPS_pubmethod WriteEntityReferenceLinkAsync(ODataEntityReferenceLink)

Asynchronously writes an entity reference link, which is used to represent binding to an existing resource in a request payload.

System_CAPS_pubmethod WriteStart(ODataEntry)

Starts the writing of an entry.

System_CAPS_pubmethod WriteStart(ODataFeed)

Starts the writing of a feed.

System_CAPS_pubmethod WriteStart(ODataNavigationLink)

Starts the writing of a navigation link.

System_CAPS_pubmethod WriteStartAsync(ODataEntry)

Asynchronously start writing an entry.

System_CAPS_pubmethod WriteStartAsync(ODataFeed)

Asynchronously start writing a feed.

System_CAPS_pubmethod WriteStartAsync(ODataNavigationLink)

Asynchronously start writing a navigation link.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.OData.Core Namespace

Return to top