Part 4 - uploading the blob using the generated SAS with the HttpClient
This file contains 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
private async void OnTakePhotoClick(object sender, RoutedEventArgs e) | |
{ | |
//Take photo or video | |
CameraCaptureUI cameraCapture = new CameraCaptureUI(); | |
StorageFile media = await cameraCapture.CaptureFileAsync(CameraCaptureUIMode.PhotoOrVideo); | |
//add todo item | |
var todoItem = new TodoItem() { Text = "test image", ImageName = media.Name }; | |
await todoTable.InsertAsync(todoItem); | |
items.Add(todoItem); | |
//Upload image with HttpClient to the blob service using the generated item.SAS | |
using (var client = new HttpClient()) | |
{ | |
//Get a stream of the media just captured | |
using (var fileStream = await media.OpenStreamForReadAsync()) | |
{ | |
var content = new StreamContent(fileStream); | |
content.Headers.Add("Content-Type", media.ContentType); | |
content.Headers.Add("x-ms-blob-type", "BlockBlob"); | |
using (var uploadResponse = await client.PutAsync(new Uri(todoItem.SAS), content)) | |
{ | |
//TODO: any post processing | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment