I currently use this to upload a Blob to Azure and it works fine, but I'd like to add tag(s) to the file before uploading it. How do I go about adding tags to the file?
var blobClient = storageAccount.CreateCloudBlobClient();
var container = blobClient.GetContainerReference(craftId.ToString());
var blob = container.GetBlockBlobReference(newFileName);
blob.Properties.ContentType = image.ImageType;
await blob.UploadFromByteArrayAsync(image.Image, 0, image.Image.Length);