0
votes
0answers
37 views

Windows Store Application - Synchronously waiting for an async operation

I would like to use this solution for synchronously waiting for an async operation. public static ConfiguredTaskAwaitable<T> StartAsTask<T> ( this IAsyncOperation<T> self, ...
0
votes
1answer
38 views

Issue with httpclient.getstringasync

I want to develop a Dragon Timer Windows Store App for GuildWars 2. Whatever, I save a timestamp in a sql database. To get this timestamp in the app, I made a php script that writes the content of the ...
1
vote
4answers
84 views

Ref in async Task

How I can to pass a reference as a parameter to Async method in Windows Store App ? I'm looking for something like this: var a = DoThis(ref obj.value); public async Task DoThis(ref int value) { ...
0
votes
1answer
33 views

How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)

I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example. I've found some info about this topic, but it ...
0
votes
0answers
30 views

Create an Async Login UI (a bit like FilePicker)

I'm reasonably certain that we mortals can not do this, so I figured I'd ask the question here, and hopefully we'll generate some good material in the process of answering it. Situation: I'm creating ...
1
vote
1answer
47 views

using Nito AsyncEx/AsyncInLine to lead with async filePicker

I'm new at async world and i started developing some stuff for windows store apps. My problem is that i need to wait the async method of filepicker ends to do other stuff. So i tried search for: "run ...
0
votes
1answer
101 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
47 views

Calling other functions inside Lambda [C++/CX]

I'm working on a Windows Store app (C++). The app loads data from database using a webservice and I want that data to be shown on the page. Why can I not call functions w.r.t an instance of a class ...
0
votes
0answers
52 views

Chain the completion of an async function to another

I am working on a Windows Store (C++) app. This is a method that reads from the database using the web service. task<std::wstring> Ternet::GetFromDB(cancellation_token cancellationToken) { ...
2
votes
3answers
139 views

Mutex/Monitor not working for C# Thread synchronization

I am trying to only allow one Thread to access a non-static method from an object. I don't really create Threads but use Tasks instead. I tried to lock the method down to one usage but it just isn't ...
0
votes
0answers
72 views

Missing AsyncResult in Windows store apps?

I am porting a .Net library that makes heavy use of the Asynchronous Programming Model(APM) to a Windows store app library. I would like to keep the Method definitions the same so other code making ...
1
vote
1answer
77 views

Is there an ObserveOnDispatcher for Windows Store Apps?

I'm using reactive extensions (well, trying, learning) in a windows store app. I have a series of async operations that will eventually navigate to an authorization web page for RTM. Given the reading ...
0
votes
1answer
146 views

RequestProductPurchaseAsync throws Platform::InvalidArgumentException^

I am trying the in app purchase API (C++/CX) and RequestProductPurchaseAsync throws an Platform::InvalidArgumentException^ I have the following code: // loading store ...
2
votes
1answer
647 views

Getting a Stream from a resource file / content

Is this the correct/only way of getting a Stream from a resource file? Uri uri = new Uri(fullPath); StorageFile storageFile = await Windows.Storage.StorageFile. ...
1
vote
2answers
122 views

When should you use Task.Run() rather than await?

I am storing the state of my data model. I clone the data model and then want to have it written to "disk" asynchronously. Should I be using Task.Run() which runs it on a background thread? Or should ...
0
votes
3answers
437 views

What is the best way to consume REST services in Windows Store Apps?

I am quite new to Windows Store Apps developement and I need to consume a REST based web service. My issue is that there has been so much movement in development technologies made for consuming ...
2
votes
4answers
543 views

Wait for a void async method

How can I wait for a void async method to finish its job? for example, I have a function like below: async void LoadBlahBlah() { await blah(); ... } now I want to make sure that everything ...
0
votes
1answer
111 views

What is the .NET 4.5 Windows Store App equivalent of AsyncOperationManager?

Currently digging into developing a Windows Store App for my new Surface device, I am trying to port a small application from .NET 2.0 WinForms. I am using the AsyncOperationManager class to ...
3
votes
1answer
222 views

Async programmic and virtual functions

If I have an interface such as: using System.Threading.Tasks; ... public interface IFoo { Task doIt(); Task<bool> doItAndReturnStuff(); } and one of the classes implementing this ...