Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a .net 4 project where I want to use the async functionality.

So I added the Async .net 4 bridge.

My method is declared as

public async Task<string> Foo(string value1, string value2)

The consumer calls the message like this

private static async void run()
{
    string result = await adapter.Foo();
}

but the compiler tells me

Error 1 Cannot await 'System.Threading.Tasks.Task' C:\dev\TestRunner\Program.cs 34 29 TestRunner.

When I switch the project to 4.5 it works Any hint whats going wrong?

The Foo Method itself contains an await for HttpClient.Get which works.

Here the code of the FOO Method which works:

  HttpClient client = new HttpClient();
  string url = ServerUrl + @"/api/test";    
  var content = getjsonContent();
  var result = await client.PostAsync();
share|improve this question
3  
Have you tried to use Async Targeting Pack instead? – svick Oct 24 '12 at 17:56
1  
+1 to svick's recommendation - you can find details on their update from this week @ blogs.msdn.com/b/bclteam/archive/2012/10/22/… – James Manning Oct 24 '12 at 23:27
Using the Async Targeting Pack instead was the solution @svick: Do you want to post this as a reply so I can mark it as the answer? – Boas Enkler Oct 25 '12 at 11:41

closed as too localized by casperOne Oct 25 '12 at 12:33

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.