标签: c# asp.net amazon-web-services amazon-s3
我正在尝试使用transferUtility将文件上传到我的C#应用程序中的Amazon AWS,如下所示:
client.transferUtility.BeginUpload(request, callback, null);
我收到错误:
The name 'transferUtility' does not exist in the current context
我导入了Amazon.S3.Model。
我错过了什么?
答案 0 :(得分:1)
尝试使用using Amazon.S3.Transfer;
using Amazon.S3.Transfer;
Class TransferUtility