12 references to ReadAsStringAsync
Microsoft.AspNetCore.Authentication.Facebook (1)
FacebookHandler.cs (1)
58using (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 (3)
OpenIdConnectHandler.cs (3)
618var parResponseString = await parResponseMessage.Content.ReadAsStringAsync(Context.RequestAborted); 1016var responseContent = await responseMessage.Content.ReadAsStringAsync(Context.RequestAborted); 1062var 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);
Microsoft.Extensions.AI.Integration.Tests (1)
VerbatimHttpHandler.cs (1)
24.ReadAsStringAsync(cancellationToken).ConfigureAwait(false);
System.Net.Http (1)
System\Net\Http\HttpContent.cs (1)
140ReadAsStringAsync(CancellationToken.None);