I need to cancel an in-progress download that was initiated with
fileTransferUtility = new TransferUtility(/*...*/); var uploadRequest = new TransferUtility
Try something like :
s3Client.AbortMultipartUpload(new AbortMultipartUploadRequest() .WithBucketName(bucketName) .WithKey(key) .WithUploadId(Response.UploadId)); }
see http://docs.aws.amazon.com/sdkfornet/latest/apidocs/html/M_Amazon_S3_AmazonS3_AbortMultipartUpload.htm