0
votes
0answers
179 views

Google currency converter API on WinRT

I'm trying to use Google currency convert API on Windows Store app , this is my code public async void GetTipoCambio() { //Obtengo el valor seleccionado de mi combobox String OpcionObtenida ...
0
votes
2answers
65 views

checking completion of void async method

I have an event handler (from a timer) that redraws every x milliseconds. Even though it is (apparently) not best practice to use async void methods, this is apparently not true for event handlers ...
1
vote
1answer
472 views

File access from a background task in a windows store app

I can't seem to read a file from a background task in a windows store app. Here's the code that reads the file content: async private static Task<string> ReadAsync(string FileName) { var ...
3
votes
2answers
314 views

how to disable caching HTTP GET in metro app, I am using IXMLHTTPRequest2

I am doing an http GET to fetch data, I am using IXMLHTTPRequest2. If I GET url "http://foo.com" (curl "http://foo.com"), the second time I get this url again, the content on server is actually ...
0
votes
1answer
142 views

Exception while showing a downloaded image in windows store apps

Hi I am downloading an image from the following code HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, imageUri); HttpResponseMessage response = await ...
0
votes
1answer
341 views

How to pass execution to the UI thread in a task when having to wait for the result (without Dispatcher) in a Windows Store App?

This is a duplication of my question in the Windows Store Apps Forum: I have an awaitable method returning a Task. It gets passed a delegate designated to make a decision. The task iterates though ...