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.
Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.
Namespace: System.Net.Http
Assembly: System.Net.Http (in System.Net.Http.dll)
Syntax
'Declaration
Protected Overrides 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 override Task SerializeToStreamAsync(
Stream stream,
TransportContext context
)
protected:
virtual Task^ SerializeToStreamAsync(
Stream^ stream,
TransportContext^ context
) override
abstract SerializeToStreamAsync :
stream:Stream *
context:TransportContext -> Task
override SerializeToStreamAsync :
stream:Stream *
context:TransportContext -> Task
protected override function SerializeToStreamAsync(
stream : Stream,
context : TransportContext
) : Task
Parameters
- stream
Type: System.IO.Stream
The target stream.
- context
Type: System.Net.TransportContext
Information about the transport, like channel binding token. This parameter may be null.
Return Value
Type: System.Threading.Tasks.Task
Returns Task. The task object representing the asynchronous operation.