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.
Asynchronously serializes the object's content to the given stream.
Namespace: System.Net.Http
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.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 Stream to which to write.
- context
Type: System.Net.TransportContext
The associated TransportContext.
Return Value
Type: System.Threading.Tasks.Task
A Task instance that is asynchronously serializing the object's content.