10 references to ReadAsStringAsync
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookHandler.cs (1)
59using (var payload = JsonDocument.Parse(await response.Content.ReadAsStringAsync(Context.RequestAborted)))
Microsoft.AspNetCore.Authentication.Google (1)
GoogleHandler.cs (1)
56using (var payload = JsonDocument.Parse(await response.Content.ReadAsStringAsync(Context.RequestAborted)))
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
52using (var payload = JsonDocument.Parse(await response.Content.ReadAsStringAsync(Context.RequestAborted)))
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
223var body = await response.Content.ReadAsStringAsync(Context.RequestAborted);
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectHandler.cs (2)
906var responseContent = await responseMessage.Content.ReadAsStringAsync(Context.RequestAborted); 952var userInfoResponse = await responseMessage.Content.ReadAsStringAsync(Context.RequestAborted);
Microsoft.AspNetCore.Authentication.Twitter (3)
TwitterHandler.cs (3)
275var responseText = await response.Content.ReadAsStringAsync(Context.RequestAborted); 307var responseText = await response.Content.ReadAsStringAsync(Context.RequestAborted); 331var responseText = await response.Content.ReadAsStringAsync(Context.RequestAborted);
System.Net.Http (1)
System\Net\Http\HttpContent.cs (1)
140ReadAsStringAsync(CancellationToken.None);