OutputFileReference.DownloadToByteArrayAsync Method

Definition

Downloads the contents of the file to a byte array.

public System.Threading.Tasks.Task<int> DownloadToByteArrayAsync (byte[] target, int index, System.Threading.CancellationToken cancellationToken = default);
member this.DownloadToByteArrayAsync : byte[] * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public Function DownloadToByteArrayAsync (target As Byte(), index As Integer, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Integer)

Parameters

target
Byte[]

The target byte array.

index
Int32

The starting offset in the byte array

cancellationToken
CancellationToken

A CancellationToken for controlling the lifetime of the asynchronous operation.

Returns

The total number of bytes read into the buffer.

Applies to

See also