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 to trigger insert operation which returns item.SAS | |
var todoItem = new TodoItem() { | |
ContainerName = "mypics", | |
ResourceName= media.Name, | |
Text = "NA", | |
}; | |
await todoTable.InsertAsync(todoItem); | |
items.Add(todoItem); | |
//TODO: Upload image direct to blob storage using SAS | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment