This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UploadUtilityHelper | |
{ | |
private readonly string bucketName = ConfigurationManager.AppSettings["BucketName"]; | |
private static readonly RegionEndpoint bucketRegion = RegionEndpoint.USEast1; | |
public string UploadChunk(string fileName, string uploadId, int chunkIndex, int chunkMax, Stream stream, string prevETags) | |
{ | |
var response = ""; | |
try |