你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DeviceClient.GetFileUploadSasUriAsync Method

Definition

Get a file upload SAS URI which the Azure Storage SDK can use to upload a file to blob for this device See this documentation for more details.

public System.Threading.Tasks.Task<Microsoft.Azure.Devices.Client.Transport.FileUploadSasUriResponse> GetFileUploadSasUriAsync(Microsoft.Azure.Devices.Client.Transport.FileUploadSasUriRequest request, System.Threading.CancellationToken cancellationToken = default);
member this.GetFileUploadSasUriAsync : Microsoft.Azure.Devices.Client.Transport.FileUploadSasUriRequest * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.Client.Transport.FileUploadSasUriResponse>
Public Function GetFileUploadSasUriAsync (request As FileUploadSasUriRequest, Optional cancellationToken As CancellationToken = Nothing) As Task(Of FileUploadSasUriResponse)

Parameters

request
FileUploadSasUriRequest

The request details for getting the SAS URI, including the destination blob name.

cancellationToken
CancellationToken

The cancellation token.

Returns

The file upload details to be used with the Azure Storage SDK in order to upload a file from this device.

Applies to