Mostly you are already there.
Upon return void:
public async Task SomethingAsync()
{
await DoSomethingAsync();
}
When returning the result:
public async Task<string> SomethingAsync()
{
return await DoSomethingAsync();
}
It should be noted that when you return the values ββin the async method, you return the internal type (i.e. in this case string), and not the instance Task<string>.