HttpContent.ReadAsByteArrayAsync Method

Definition

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