HttpContent.SerializeToStreamAsync Method

Serialize the HTTP content to a stream as an asynchronous operation.

Namespace:  System.Net.Http
Assembly:  System.Net.Http (in System.Net.Http.dll)

Syntax

'Declaration
Protected MustOverride Function SerializeToStreamAsync ( _
    stream As Stream, _
    context As TransportContext _
) As Task
'Usage
Dim stream As Stream 
Dim context As TransportContext 
Dim returnValue As Task 

returnValue = Me.SerializeToStreamAsync(stream, _
    context)
protected abstract Task SerializeToStreamAsync(
    Stream stream,
    TransportContext context
)
protected:
virtual Task^ SerializeToStreamAsync(
    Stream^ stream, 
    TransportContext^ context
) abstract
abstract SerializeToStreamAsync : 
        stream:Stream * 
        context:TransportContext -> Task
protected abstract function SerializeToStreamAsync(
    stream : Stream, 
    context : TransportContext
) : Task

Parameters

  • context
    Type: System.Net.TransportContext
    Information about the transport (channel binding token, for example). This parameter may be null.

Return Value

Type: System.Threading.Tasks.Task
Returns Task.The task object representing the asynchronous operation.

See Also

Reference

HttpContent Class

System.Net.Http Namespace