3 references to DeserializeAsync
Microsoft.AspNetCore.Http.Extensions (1)
HttpRequestJsonExtensions.cs (1)
255return await JsonSerializer.DeserializeAsync(inputStream, type, context, cancellationToken);
System.Net.Http.Json (2)
System\Net\Http\Json\HttpClientJsonExtensions.cs (1)
28FromJsonAsyncCore(getMethod, client, requestUri, static (stream, options, cancellation) => JsonSerializer.DeserializeAsync(stream, options.type, options.context, cancellation), (type, context), cancellationToken);
System\Net\Http\Json\HttpContentJsonExtensions.cs (1)
132return await JsonSerializer.DeserializeAsync(contentStream, type, context, cancellationToken).ConfigureAwait(false);