ODataParameterWriter.WriteValueAsync Method

Asynchronously start writing a value parameter.

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

Syntax

'Declaration
Public MustOverride Function WriteValueAsync ( _
    parameterName As String, _
    parameterValue As Object _
) As Task
'Usage
Dim instance As ODataParameterWriter 
Dim parameterName As String 
Dim parameterValue As Object 
Dim returnValue As Task 

returnValue = instance.WriteValueAsync(parameterName, _
    parameterValue)
public abstract Task WriteValueAsync(
    string parameterName,
    Object parameterValue
)
public:
virtual Task^ WriteValueAsync(
    String^ parameterName, 
    Object^ parameterValue
) abstract
abstract WriteValueAsync : 
        parameterName:string * 
        parameterValue:Object -> Task
public abstract function WriteValueAsync(
    parameterName : String, 
    parameterValue : Object
) : Task

Parameters

  • parameterName
    Type: System.String
    The name of the parameter to write.
  • parameterValue
    Type: System.Object
    The value of the parameter to write.

Return Value

Type: System.Threading.Tasks.Task
A task instance that represents the asynchronous write operation.

See Also

Reference

ODataParameterWriter Class

Microsoft.Data.OData Namespace