Share via


ODataParameterWriter.CreateCollectionWriterAsync Method (String)

 

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

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

Syntax

public abstract Task<ODataCollectionWriter> CreateCollectionWriterAsync(
    string parameterName
)
public:
virtual Task<ODataCollectionWriter^>^ CreateCollectionWriterAsync(
    String^ parameterName
) abstract
abstract CreateCollectionWriterAsync : 
        parameterName:string -> Task<ODataCollectionWriter>
Public MustOverride Function CreateCollectionWriterAsync (
    parameterName As String
) As Task(Of ODataCollectionWriter)

Parameters

  • parameterName
    Type: System.String

    The name of the collection parameter to write.

Return Value

Type: System.Threading.Tasks.Task<ODataCollectionWriter>

The asynchronously created ODataCollectionWriter.

See Also

ODataParameterWriter Class
Microsoft.OData.Core Namespace

Return to top