13 references to ReadAsStringAsync
Aspire.Hosting.GitHub.Models (1)
GitHubModelsHealthCheck.cs (1)
78var content = await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Redis.Tests (1)
RedisFunctionalTests.cs (1)
558var content = await response.Content.ReadAsStringAsync(ct);
Aspire.Hosting.Seq.Tests (1)
SeqFunctionalTests.cs (1)
60var reponseContent = await response.Content.ReadAsStringAsync(token);
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)
614var parResponseString = await parResponseMessage.Content.ReadAsStringAsync(Context.RequestAborted); 1012var responseContent = await responseMessage.Content.ReadAsStringAsync(Context.RequestAborted); 1058var 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);