ODataMessageWriter.WriteValueAsync Method
Asynchronously writes a single value as the message body.
Namespace: Microsoft.Data.OData
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
Public Function WriteValueAsync ( _
value As Object _
) As Task
'Usage
Dim instance As ODataMessageWriter
Dim value As Object
Dim returnValue As Task
returnValue = instance.WriteValueAsync(value)
public Task WriteValueAsync(
Object value
)
public:
Task^ WriteValueAsync(
Object^ value
)
member WriteValueAsync :
value:Object -> Task
public function WriteValueAsync(
value : Object
) : Task
Parameters
- value
Type: System.Object
The value to write.
Return Value
Type: System.Threading.Tasks.Task
A running task representing the writing of the value.