17 references to ReadAsStringAsync
Aspire.Hosting.Redis.Tests (1)
RedisFunctionalTests.cs (1)
553var content = await response.Content.ReadAsStringAsync(ct);
Aspire.Hosting.Seq.Tests (1)
SeqFunctionalTests.cs (1)
58var 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);
Microsoft.Extensions.AI.Evaluation.Safety (4)
ContentSafetyService.cs (4)
219await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false); 268await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false); 322await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false); 394await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false);
System.Net.Http (1)
System\Net\Http\HttpContent.cs (1)
88ReadAsStringAsync(CancellationToken.None);