Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i´m trying to convert a "classic" asynchronous method that uses a callback into a async/await method. This is the code:

authClient.LoginCompleted += authClient_LoginCompleted;
authClient.LoginAsync(new List<string>() { "var1", "var2" }, data);

static void authClient_LoginCompleted(object sender, LoginCompletedEventArgs e)
{ ... }

where "data" is a UserState, and authClient_LoginCompleted is the callback.

I already have the logic for a async/await methods, the problem is that the interacion in windows phone with Microsoft.Live uses callbacks. I´m considering a solution using semaphore, in order not to change the logic I have. That could be a good option?

share|improve this question

1 Answer

If you need to wrap asynchronous callbacks into Tasks, then you can use TaskCompletionSource<T>. MSDN has the full details.

However, in your case, you can just use LoginAsync without the UserState parameter:

LiveLoginResult result = await authClient.LoginAsync(new[] { "var1", "var2" });
share|improve this answer
This link is very useful for understanding the useges of the TaskCompletionSource: blog.galasoft.ch/archive/2013/01/27/… – user1845148 Jan 28 at 13:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.