Share via


ODataParameterWriter Class

 

Represents a base class for OData collection writers.

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

Inheritance Hierarchy

System.Object
  Microsoft.OData.Core.ODataParameterWriter

Syntax

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

Constructors

Name Description
System_CAPS_protmethod ODataParameterWriter()

Initializes a new instance of the ODataParameterWriter class.

Methods

Name Description
System_CAPS_pubmethod CreateCollectionWriter(String)

Creates an ODataCollectionWriter to write the value of a collection parameter.

System_CAPS_pubmethod CreateCollectionWriterAsync(String)

Asynchronously creates an ODataCollectionWriter to write the value of a collection parameter.

System_CAPS_pubmethod CreateEntryWriter(String)

System_CAPS_pubmethod CreateEntryWriterAsync(String)

System_CAPS_pubmethod CreateFeedWriter(String)

System_CAPS_pubmethod CreateFeedWriterAsync(String)

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()

Asynchronously flushes the write buffer to the underlying stream.

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()

Finish writing a parameter payload.

System_CAPS_pubmethod WriteEndAsync()

Asynchronously finish writing a parameter payload.

System_CAPS_pubmethod WriteStart()

Start writing a parameter payload.

System_CAPS_pubmethod WriteStartAsync()

Asynchronously start writing a parameter payload.

System_CAPS_pubmethod WriteValue(String, Object)

Start writing a value parameter.

System_CAPS_pubmethod WriteValueAsync(String, Object)

Asynchronously start writing a value parameter.

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