Skip to main content
✏️ Code CompletionC# C# / .NET Easy+10 XP

Async Method

Complete the async method signature.

✏️ Fill in the blank
public ___ Task<string> GetDataAsync() {
  return await httpClient.GetStringAsync(url);
}

✏️ Type the missing code: