Tagged Questions
0
votes
0answers
26 views
Correct way to get the CoreDispatcher in a Windows Store app
I'm building a Windows Store app, and I have some code that needs to be posted to the UI thread.
For that, i'd like to retrieve the CoreDispatcher and use it to post the code.
It seems that there ...
0
votes
0answers
91 views
Issues with await and async in a metro windows 8 application
I'm trying to create a windows 8 metro style application. The application ( a card application ) takes a png graphic that I make sprites ( cards ) from using bitmap encode and bitmap decode apis.
...
-1
votes
1answer
65 views
Message Dialog in Windows Store WITHOUT Async?
So, I'm porting an app over to Windows Store. At the start of the app, I have some code, that asks a question. I DO NOT WANT THE REST OF MY CODE TO FIRE UNTIL I GET A RESPONSE.
I have this:
...
0
votes
1answer
73 views
Making a class Async for WinRT / Windows 8 Developement
I'm developing a Win 8 app which needs to do some possibly long running looping and calculations based around the data input by the user. This calculation is run often to update the results in real ...
0
votes
0answers
18 views
System.WindowsRuntimeExtensions missing?
I'm trying to expose an async method via a windows RT component to my consuming JS.
Without going into too much initial detail, some of the articles I've read point to an extension method ...
0
votes
0answers
196 views
Remote Procedure Call Failed on Windows Store Application Tutorial
I've been going through this MSDN tutorial on Windows Store applications.
When attempting to open the file, I get the following exception. I haven't found any information about this in regards to ...
0
votes
1answer
86 views
Task Error when await in windows store application
Hej, I have a method:
public static async Task<myClassl> GetData()
{
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("http:sasa.com");
...
0
votes
1answer
115 views
async calls in LoadState blocking the UI Thread
In my Windows 8app i am overriding Page“s LoadState setting it async and use it to download and parse data in a Task i await. Afterwards i bind these data to a GridView.
Although my processing ...
9
votes
2answers
580 views
Synchronously waiting for an async operation, and why does Wait() freeze the program here
Preface: I'm looking for an explanation, not just a solution. I already know the solution.
Despite having spent several days studying MSDN articles about the Task-based Asynchronous Pattern (TAP), ...
7
votes
1answer
591 views
Where do I mark a lambda expression async?
I've got this code:
private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args)
{
CheckBox ckbx = null;
if (sender is CheckBox)
{
ckbx = ...
3
votes
2answers
776 views
Cannot use await in Portable Class Library for Win 8 and Win Phone 8
I'm attempting to create a Portable Class Library in Visual Studio 2012 to be used for a Windows 8 Store app and a Windows Phone 8 app.
I'm getting the following error:
'await' requires that the ...
4
votes
3answers
1k views
What must I do to make my methods awaitable?
How can I roll my own async awaitable methods?
I see that writing an async method is easy as pie in some cases:
private async Task TestGeo()
{
Geolocator geo = new Geolocator();
Geoposition ...
0
votes
2answers
163 views
Why does this await keep me waiting forever?
I now have no problem with the People/Contacts displaying as I was having - several times in a row now they have all displayed - but the call to retrieve a Contacts object never returns - with the ...
2
votes
1answer
138 views
Is it true that deferral should be added for any async operation?
According to Likness (p. 164, "Building Windows 8 Apps with C# and XAML"), "When performing asynchronous tasks, you must ask for a deferral."
So if I'm not taking him out of context, this code:
...
16
votes
3answers
1k views
Is it possible to await an event instead of another async method?
In my C#/XAML metro app, there's a button which kicks off a long-running process. So, as recommended, I'm using async/await to make sure the UI thread doesn't get blocked:
private async void ...

