5 references to SerializeAsync
Microsoft.AspNetCore.Http.Extensions (2)
HttpResponseJsonExtensions.cs (2)
275return JsonSerializer.SerializeAsync(response.Body, value, type, options, cancellationToken); 289await JsonSerializer.SerializeAsync(body, value, type, options, cancellationToken);
Microsoft.AspNetCore.Mvc.Core (2)
Infrastructure\SystemTextJsonResultExecutor.cs (2)
69await JsonSerializer.SerializeAsync(responseStream, value, objectType, jsonSerializerOptions, context.HttpContext.RequestAborted); 83await JsonSerializer.SerializeAsync(transcodingStream, value, objectType, jsonSerializerOptions, context.HttpContext.RequestAborted);
System.Text.Json (1)
System\Text\Json\Serialization\JsonSerializer.Write.String.cs (1)
55/// and <see cref="SerializeAsync(IO.Stream, object?, Type, JsonSerializerOptions?, Threading.CancellationToken)"/>.