HttpContent.CopyToAsync Method (Stream, TransportContext)

Write 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
Public Function CopyToAsync ( _
    stream As Stream, _
    context As TransportContext _
) As Task
'Usage
Dim instance As HttpContent 
Dim stream As Stream 
Dim context As TransportContext 
Dim returnValue As Task 

returnValue = instance.CopyToAsync(stream, _
    context)
public Task CopyToAsync(
    Stream stream,
    TransportContext context
)
public:
Task^ CopyToAsync(
    Stream^ stream, 
    TransportContext^ context
)
member CopyToAsync : 
        stream:Stream * 
        context:TransportContext -> Task
public function CopyToAsync(
    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

CopyToAsync Overload

System.Net.Http Namespace