TransferManagerUploadAsync Method (Stream, CloudFile, UploadOptions, SingleTransferContext) |
Upload a file to Azure File Storage.
Namespace:
Microsoft.Azure.Storage.DataMovement
Assembly:
Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax public static Task UploadAsync(
Stream sourceStream,
CloudFile destFile,
UploadOptions options,
SingleTransferContext context
)
Public Shared Function UploadAsync (
sourceStream As Stream,
destFile As CloudFile,
options As UploadOptions,
context As SingleTransferContext
) As Task
public:
static Task^ UploadAsync(
Stream^ sourceStream,
CloudFile^ destFile,
UploadOptions^ options,
SingleTransferContext^ context
)
static member UploadAsync :
sourceStream : Stream *
destFile : CloudFile *
options : UploadOptions *
context : SingleTransferContext -> Task
Parameters
- sourceStream
- Type: System.IOStream
A Stream object providing the file content. - destFile
- Type: CloudFile
The CloudFile that is the destination Azure file. - options
- Type: Microsoft.Azure.Storage.DataMovementUploadOptions
An UploadOptions object that specifies additional options for the operation. - context
- Type: Microsoft.Azure.Storage.DataMovementSingleTransferContext
A SingleTransferContext object that represents the context for the current operation.
Return Value
Type:
TaskA
Task object that represents the asynchronous operation.
See Also