HttpContent.CopyToAsync Method (Stream)

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 _
) As Task
'Usage
Dim instance As HttpContent 
Dim stream As Stream 
Dim returnValue As Task 

returnValue = instance.CopyToAsync(stream)
public Task CopyToAsync(
    Stream stream
)
public:
Task^ CopyToAsync(
    Stream^ stream
)
member CopyToAsync : 
        stream:Stream -> Task
public function CopyToAsync(
    stream : Stream
) : Task

Parameters

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