Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
- stream
Type: System.IO.Stream
The target stream.
Return Value
Type: System.Threading.Tasks.Task
Returns Task.The task object representing the asynchronous operation.