15 references to ReadAsStringAsync
Aspire.Hosting.Redis (2)
RedisBuilderExtensions.cs (2)
424resourceLogger.LogDebug("Could not initialize RedisInsight settings. Reason: {reason}", await response.Content.ReadAsStringAsync(ct).ConfigureAwait(false)); 435var content = await response.Content.ReadAsStringAsync(ct).ConfigureAwait(false);
Aspire.Hosting.Redis.Tests (1)
RedisFunctionalTests.cs (1)
668var content = await response.Content.ReadAsStringAsync(ct);
Aspire.Hosting.Seq.Tests (1)
SeqFunctionalTests.cs (1)
59var 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);
System.Net.Http (1)
System\Net\Http\HttpContent.cs (1)
88ReadAsStringAsync(CancellationToken.None);