Skip to content

Instantly share code, notes, and snippets.

@ajtatum
Created January 15, 2021 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajtatum/fe03b9287cd45c26c78b558c21978180 to your computer and use it in GitHub Desktop.
Save ajtatum/fe03b9287cd45c26c78b558c21978180 to your computer and use it in GitHub Desktop.
Azure Storage To Photo CDN
public string ConvertToPhotoCdn(string imageUrl)
{
var cdnUrl = _appSettings.CDN.Images.CdnUrl;
return _appSettings.CDN.Images.UseCdn
? imageUrl.Replace(_appSettings.Azure.Storage.StorageBlobUrl, cdnUrl)
: imageUrl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment