Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UWP app: FileOpenPicker PickSingleFileAsync() can't await

I'm trying to let the user browse for a file with the FileOpenPicker class, but when I use the PickSingleFileAsync function with await, I get following error:

'IAsyncOperation' does not contain a definition for 'GetAwaiter' and no extension method 'GetAwaiter' accepting a first argument of type 'IAsyncOperation' could be found (are you missing a using directive for 'System'?)

This is the function that gives the error on it's last line:

private async void browseFileButton_Click(object sender, RoutedEventArgs e) {
    FileOpenPicker filePicker = new FileOpenPicker();
    filePicker.ViewMode = PickerViewMode.Thumbnail;

    selectedFile = await filePicker.PickSingleFileAsync();
}

The documentation from Microsoft contains an example that uses the FileOpenPicker in the same way. Has anybody had this problem or has anybody a solution for this problem?

like image 607
Niels Uytdenhouwen Avatar asked Aug 26 '15 22:08

Niels Uytdenhouwen


1 Answers

do you have:

using System;

at the top of the class file? I just tried adding your sample to a project and duplicated your error when I removed this reference...

like image 169
SelAromDotNet Avatar answered Oct 06 '22 00:10

SelAromDotNet