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 push content into 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.StreamThe stream where the push content will be serialized.
context
Type: System.Net.TransportContextThe context.
Return Value
Type: System.Threading.Tasks.Task
The serialized push content.