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();