TwentyTwenty.Storage.Amazon.AmazonStorageProvider.GetBlobUrl C# (CSharp) Method

GetBlobUrl() public method

public GetBlobUrl ( string containerName, string blobName ) : string
containerName string
blobName string
return string
        public string GetBlobUrl(string containerName, string blobName)
        {
            return $"{_serviceUrl}/{_bucket}/{GenerateKeyName(containerName, blobName)}";
        }