We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1130984 commit 6f9d250Copy full SHA for 6f9d250
ImageResizeWebApp/ImageResizeWebApp/Helpers/StorageHelper.cs
@@ -27,7 +27,8 @@ public static bool IsImage(IFormFile file)
27
return formats.Any(item => file.FileName.EndsWith(item, StringComparison.OrdinalIgnoreCase));
28
}
29
30
- public static async Task<bool> UploadFileToStorage(Stream fileStream, string fileName, AzureStorageConfig _storageConfig)
+ public static async Task<bool> UploadFileToStorage(Stream fileStream, string fileName,
31
+ AzureStorageConfig _storageConfig)
32
{
33
// Create a URI to the blob
34
Uri blobUri = new Uri("https://" +
0 commit comments