HttpContent.ReadAsByteArrayAsync Method

Definition

Overloads

ReadAsByteArrayAsync()

Serialize the HTTP content to a byte array as an asynchronous operation.

ReadAsByteArrayAsync(CancellationToken)

Serialize the HTTP content to a byte array as an asynchronous operation.

ReadAsByteArrayAsync()

Source:
HttpContent.cs
Source:
HttpContent.cs
Source:
HttpContent.cs

Serialize the HTTP content to a byte array as an asynchronous operation.

public:
 System::Threading::Tasks::Task<cli::array <System::Byte> ^> ^ ReadAsByteArrayAsync();
public System.Threading.Tasks.Task<byte[]> ReadAsByteArrayAsync ();
member this.ReadAsByteArrayAsync : unit -> System.Threading.Tasks.Task<byte[]>
Public Function ReadAsByteArrayAsync () As Task(Of Byte())

Returns

Task<Byte[]>

The task object representing the asynchronous operation.

Remarks

This operation will not block. The returned Task<TResult> object will complete after all of the content has been written as a byte array.

Once the operation completes, the Result property on the returned task object contains the byte array with the HTTP content.

Note that this method will internally buffer the content via LoadIntoBufferAsync().

Applies to

ReadAsByteArrayAsync(CancellationToken)

Source:
HttpContent.cs
Source:
HttpContent.cs
Source:
HttpContent.cs

Serialize the HTTP content to a byte array as an asynchronous operation.

public:
 System::Threading::Tasks::Task<cli::array <System::Byte> ^> ^ ReadAsByteArrayAsync(System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<byte[]> ReadAsByteArrayAsync (System.Threading.CancellationToken cancellationToken);
member this.ReadAsByteArrayAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<byte[]>
Public Function ReadAsByteArrayAsync (cancellationToken As CancellationToken) As Task(Of Byte())

Parameters

cancellationToken
CancellationToken

The cancellation token to cancel the operation.

Returns

Task<Byte[]>

The task object representing the asynchronous operation.

Exceptions

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

Remarks

This operation will not block. The returned Task<TResult> object will complete after all of the content has been written as a byte array.

Once the operation completes, the Result property on the returned task object contains the byte array with the HTTP content.

Note that this method will internally buffer the content via LoadIntoBufferAsync().

Applies to