ByteArrayContent.SerializeToStreamAsync Method

Definition

Overloads

SerializeToStreamAsync(Stream, TransportContext)

Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.

SerializeToStreamAsync(Stream, TransportContext, CancellationToken)

Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.

SerializeToStreamAsync(Stream, TransportContext)

Source:
ByteArrayContent.cs
Source:
ByteArrayContent.cs
Source:
ByteArrayContent.cs

Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.

C#
protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context);
C#
protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context);

Parameters

stream
Stream

The target stream.

context
TransportContext

Information about the transport, like channel binding token. This parameter may be null.

Returns

The task object representing the asynchronous operation.

Remarks

This operation does not block. When the returned Task object completes, the whole byte array has been written to the stream parameter.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

SerializeToStreamAsync(Stream, TransportContext, CancellationToken)

Source:
ByteArrayContent.cs
Source:
ByteArrayContent.cs
Source:
ByteArrayContent.cs

Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.

C#
protected override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken);

Parameters

stream
Stream

The target stream.

context
TransportContext

Information about the transport, like channel binding token. This parameter may be null.

cancellationToken
CancellationToken

The cancellation token to cancel the operation.

Returns

The task object representing the asynchronous operation.

Exceptions

The cancellation token was canceled. This exception is stored into the returned task.

Remarks

This operation does not block. When the returned Task object completes, the whole byte array has been written to the stream parameter.

Applies to

.NET 10 and other versions
Product Versions
.NET 5, 6, 7, 8, 9, 10