BaseJsonMediaTypeFormatter.WriteToStreamAsync Method
Namespace: System.Net.Http.Formatting
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Overload List
Name | Description | |
---|---|---|
WriteToStreamAsync(Type, Object, Stream, HttpContent, TransportContext) | Asynchronously writes an object of the specified type.(Inherited from MediaTypeFormatter.) |
|
WriteToStreamAsync(Type, Object, Stream, HttpContent, TransportContext, CancellationToken) | Called during serialization to write an object of the specified type to the specified stream.(Overrides MediaTypeFormatter.WriteToStreamAsync(Type, Object, Stream, HttpContent, TransportContext, CancellationToken).) |
See Also
BaseJsonMediaTypeFormatter Class
System.Net.Http.Formatting Namespace
Return to top
BaseJsonMediaTypeFormatter.WriteToStreamAsync Method (Type, Object, Stream, HttpContent, TransportContext, CancellationToken)
Called during serialization to write an object of the specified type to the specified stream.
Syntax
public override Task WriteToStreamAsync(
Type type,
object value,
Stream writeStream,
HttpContent content,
TransportContext transportContext,
CancellationToken cancellationToken
)
public:
virtual Task^ WriteToStreamAsync(
Type^ type,
Object^ value,
Stream^ writeStream,
HttpContent^ content,
TransportContext^ transportContext,
CancellationToken cancellationToken
) override
override WriteToStreamAsync :
type:Type *
value:Object *
writeStream:Stream *
content:HttpContent *
transportContext:TransportContext *
cancellationToken:CancellationToken -> Task
Public Overrides Function WriteToStreamAsync (
type As Type,
value As Object,
writeStream As Stream,
content As HttpContent,
transportContext As TransportContext,
cancellationToken As CancellationToken
) As Task
Parameters
type
Type: System.TypeThe type of the object to write.
value
Type: System.ObjectThe object to write.
writeStream
Type: System.IO.StreamThe stream to write to.
content
Type: System.Net.Http.HttpContentThe HttpContent for the content being written.
transportContext
Type: System.Net.TransportContextThe transport context.
cancellationToken
Type: System.Threading.CancellationTokenThe token to monitor for cancellation.
Return Value
Type: System.Threading.Tasks.Task
Returns Task.
Return to top